android – 更改pagerTabStrip tabIndicator的高度

前端之家收集整理的这篇文章主要介绍了android – 更改pagerTabStrip tabIndicator的高度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的应用程序中使用 android.support.v4.view.PagerTabStrip.

这是我使用tabIndicator的方法

PagerTabStrip pagerTabStrip = (PagerTabStrip)
findViewById(R.id.pager_title_strip);
pagerTabStrip.setDrawFullUnderline(true);
pagerTabStrip.setTabIndicatorColor(Color.parseColor("#32CD32"));

我的tabIndicator的高度非常小.如何设置/增加谷歌游戏的高度?

解决方法

Google Play商店使用自定义实施,而不是提供的PagerTabStrip.如果您想模仿Google Play商店的外观,可以使用现有的库,例如 Pager Sliding TabStrip,用于模拟Google Play商店的行为.
原文链接:https://www.f2er.com/android/309565.html

猜你在找的Android相关文章