我创建了带有固定选项卡的干净应用程序并导入了 AppCompat,如何更改活动选项卡底部边框颜色并更改单击的选项卡背景?
这就是我要的:
我创建了带有固定选项卡的干净应用程序并导入了 AppCompat,如何更改活动选项卡底部边框颜色并更改单击的选项卡背景?
这就是我要的:
You have to make custom theme with required colors you can go following link to make a custom theme easily and download it
在你的主题中添加这个
<item name="TabPageStyle">@style/CustomTabPage</item>
并在你的风格中添加这个,页脚颜色是你的标签下的颜色
<style name="CustomTitlePage">
<item name="android:background">#18FF0000</item>
<item name="footerColor">#00FFCC</item>
<item name="footerLineHeight">1dp</item>
<item name="footerIndicatorHeight">3dp</item>
<item name="footerIndicatorStyle">underline</item>
<item name="android:textColor">#00FF04</item>
</style>