是否真的没有简单的方法来使用TabLayout并能够设置选项卡的颜色(选中,未选中)?与所选标签背景使用jLabel1.setText(strDate);
一样,非选定标签使用colorPrimary
或其他内容?我在网上搜索了this和this等等。我可以使用解决方案1更改背景颜色,但现在指示符丢失,我想要它。
这可不难做到。
第一个链接的解决方案:
colorPrimaryDark
解答:
<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>
答案 0 :(得分:3)
样式改变
<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>