我想改变我的标签栏白色的颜色,下面的代码不能正常工作? 我究竟做错了什么 ?
getTabHost().getTabWidget().setLeftStripDrawable(Color.WHITE);
getTabHost().getTabWidget().setRightStripDrawable(Color.WHITE);
getTabHost().getTabWidget().setStripEnabled(true);
我想改变我的标签栏白色的颜色,下面的代码不能正常工作? 我究竟做错了什么 ?
getTabHost().getTabWidget().setLeftStripDrawable(Color.WHITE);
getTabHost().getTabWidget().setRightStripDrawable(Color.WHITE);
getTabHost().getTabWidget().setStripEnabled(true);
使用任何可绘制,而不是颜色的
意味着setLeftStripDrawable被要求绘制资源,但你给INT作为参数。
因此,无论在这里使用一个可绘制的图像。 或使用XML从绘制contaning颜色。
我希望你想改变标签条的背景颜色。 您可以通过一个根元素创建布局实现这一目标
tab_strip.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.TabLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF">
</android.support.design.widget.TabLayout>
在你的XML,你使用的标签,可以按如下方式添加tab_strip.xml
<include android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
layout="@layout/tab_strip"/>
这将使你的标签条颜色为白色。
您可以使用应用程序改变颜色:tabIndicatorColor =“@颜色/的Tablayout内indicator_color。
<android.support.design.widget.TabLayout
app:tabIndicatorColor="@color/indicator_color
/>