我是Android的新手,我需要你的帮助!
我喜欢默认的tabWidget样式,但我需要在标题标题中使用白色
这就是我现在所拥有的
我想" TAB1"和" TAB2"白色。
我尝试了自己的tabwidget风格。这是代码
<!-- styles.xml -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:tabWidgetStyle">@style/LightTabWidget</item>
</style>
<style name="LightTabWidget" parent="@android:style/Widget.TabWidget">
<item name="android:textColor">@color/tabTitle</item>
</style>
我如何才能更改文字颜色?没有改变其余的?
谢谢你的帮助!
更新 我正在使用tabHost。是否有可能用TabLayout做我需要的东西?
答案 0 :(得分:3)
在你的onCreate或onCreateView中试试这个对我有用!
TabLayout tabLayout = (TabLayout) rootView.findViewById(R.id.tab_bhishilayout);
tabLayout.addTab(tabLayout.newTab().setText("OPEN"));
tabLayout.setSelectedTabIndicatorColor(Color.RED);//set tab indicator color
tabLayout.setTabTextColors(ColorStateList.valueOf(Color.BLACK));//set tab text color
您可以更改Tabhost文本的颜色,如下所示。
tabHost.setOnTabChangedListener(new OnTabChangeListener() {
@Override
public void onTabChanged(String tabId) {
for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++) {
tabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#FF0000")); // unselected
TextView tv = (TextView) tabhost.getTabWidget().getChildAt(i).findViewById(android.R.id.title); //Unselected Tabs
tv.setTextColor(Color.parseColor("#ffffff"));
}
tabHost.getTabWidget().getChildAt(tabHost.getCurrentTab()).setBackgroundColor(Color.parseColor("#0000FF")); // selected
TextView tv = (TextView) tabhost.getCurrentTabView().findViewById(android.R.id.title); //for Selected Tab
tv.setTextColor(Color.parseColor("#000000"))
}
});
答案 1 :(得分:1)
将这些行放在xml中 -
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="@android:color/black"
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="fixed"
app:tabTextAppearance="@style/MyTabLayoutTextAppearance"
app:tabIndicatorColor="@color/black"
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="@android:color/black"/>