如何为我的标签标签设置不同的颜色,与背景颜色无关?

时间:2013-01-09 04:52:14

标签: android android-layout tabs

如何为标签标签设置单独的颜色?如果我改变背景颜色,整个颜色会发生变化。

我的代码

<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabhost"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@android:id/tabs"
android:layout_alignParentBottom="true"/>

 <FrameLayout
 android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabcontent">

 </FrameLayout>
 </RelativeLayout>
</TabHost>

enter image description here

2 个答案:

答案 0 :(得分:1)

你可以按照这个

来做这件事
String TAG_AddData="TAB LABEL";
        /*add Tab in Tabgroup*/
        TabHost host = getTabHost();
                host.addTab(host
                        .newTabSpec(TAG_AddData)
                        .setIndicator(TAG_AddData,
                                getResources().getDrawable(R.drawable.tab_add))
                        .setContent(
                                new Intent(this, AddData_ActivityGroups.class)
                                        .setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)));

/ *现在,您可以循环浏览其标签属性* /

的所有选项卡
    for (int i = 0; i < host.getTabWidget().getChildCount(); i++) {

    TextView tv = (TextView) host.getTabWidget().getChildAt(i)
                        .findViewById(android.R.id.title);
    tv.setTextColor(Color.parseColor("#ffffff"));
    }

    TextView tv = (TextView) host.getCurrentTabView().findViewById(
    android.R.id.title); // for Selected Tab
    tv.setTextColor(Color.parseColor("#000000"));

同样的事情你可以在onTabChanged方法中应用 tabGroup

答案 1 :(得分:1)

res/drawable/tabselector.xml

<selector
android:id="@+id/myselector"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states -->
<item
    android:state_focused="false"
    android:state_selected="false"
    android:state_pressed="false"
    android:drawable="@drawable/darklogo" />
<item
    android:state_focused="false"
    android:state_selected="true"
    android:state_pressed="false"
    android:drawable="@drawable/lightlogo" />

<!-- Focused states -->
<item
    android:state_focused="true"
    android:state_selected="false"
    android:state_pressed="false"
    android:drawable="@drawable/lightlogo" />
<item
    android:state_focused="true"
    android:state_selected="true"
    android:state_pressed="false"
    android:drawable="@drawable/lightlogo" />

<!-- Pressed -->
<item
    android:state_pressed="true"
    android:drawable="@drawable/lightlogo" />
</selector>

这里包含的XML是一种定义drawable的方法,可以嵌入case语句。它根据分配给它的视图的状态呈现不同的drawable。作为drawable,您应该将其保存为项目的res/drawable文件夹中的xml文件(例如tabselector.xml)。

要将它用于Tabhost,您需要像往常一样构建TabActivity(如此tutorial example所示)。

然后,当您将每个标签添加到主机时,您指定tabselector drawable作为指标,如下面“TAB 1”所示。

Drawable mySelector = getResources().getDrawable(R.drawable.tabselector);

mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 1", mySelector).setContent(R.id.textview1));
mTabHost.addTab(mTabHost.newTabSpec("tab_test2").setIndicator("TAB 2").setContent(R.id.textview2));