我怎么能这样做?可能吗?
tabhost.getTabWidget()。getChildAt(i)。 setTextColor或其他什么..?
答案 0 :(得分:0)
我猜您可以根据需要使用TabHost.TabSpec.setIndicator(android.view.View view)传递TextView
配置(彩色)。
然而,我再次重读你的帖子 - 可能你的意思是如何改变标签内容的颜色,而我正在谈论标签标签......如果是这种情况,我很抱歉,请忽略这个答案。< / p>
<强>更新强>:
在布局xml中最舒服:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textview1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is a tab - RED"
android:textColor="#FF0000" />
<TextView
android:id="@+id/textview2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is another tab - GREEN"
android:textColor="#00FF00" />
<TextView
android:id="@+id/textview3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is a third tab - BLUE"
android:textColor="#0000FF" />
</FrameLayout>
</LinearLayout>
</TabHost>
答案 1 :(得分:0)
试试ColorStateLists。祝你好运。
答案 2 :(得分:0)
要更改选项卡的文本颜色,您需要获取视图,即TextView,它被设置为选项卡的标题,您可以像这样更改它:
TabHost tabhost = getTabHost();
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)
{
TextView tv = (TextView) tabhost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
tv.setTextColor(.....);
}
希望这会有所帮助......