Android TabLayout选择的标签背景
作者:互联网
真的没有简单的方法可以使用TabLayout并能够设置选项卡的颜色(选中,未选中)吗?就像选定标签的背景使用colorPrimary一样,未选定标签的背景也使用colorPrimaryDark或其他东西?我在网上搜索了this和this等内容.我可以使用解决方案1更改背景颜色,但是现在指示器丢失了,我希望它恢复原状.
这不是很难做到的.
第一个链接的解决方案:
<style name="Base.Widget.Design.TabLayout" parent="android:Widget">
<item name="tabBackground">@drawable/tab_background</item>
</style>
// tab_background
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/tab_background_selected" android:state_selected="true" />
<item android:drawable="@drawable/tab_background_unselected" android:state_selected="false" android:state_focused="false" android:state_pressed="false" />
</selector>
回答:
<style name="Base.Widget.Design.TabLayout" parent="android:Widget">
<item name="tabBackground">@drawable/tab_background</item>
<item name="tabIndicatorColor">@color/colorAccent</item>
<item name="tabIndicatorHeight">3dp</item>
</style>
解决方法:
风格变化
<style name="Base.Widget.Design.TabLayout" parent="android:Widget">
<item name="tabBackground">@drawable/tab_background</item>
<item name="tabIndicatorColor">#000000</item>
<item name="tabIndicatorHeight">5dp</item>
</style>
标签:android-tablayout,android-viewpager,android,android-tabs 来源: https://codeday.me/bug/20191118/2028277.html