如何使用样式更改选项卡小部件文本颜色?

时间:2013-05-14 02:41:55

标签: android android-layout

我的应用使用ActionBarSherlock。

App主题是Theme.Sherlock.Light.DarkActionBar(如Holo.Light.DarkActionBar)

我需要2个深度标签(1个深度选项卡是操作栏标签),所以我制作TabHost和TabWidget。

layout.xml

<TabHost
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <FrameLayout android:id="@android:id/tabcontent"
            android:visibility="invisible"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0"/>

        <FrameLayout android:id="@+android:id/realtabcontent"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>

        <TabWidget android:id="@android:id/tabs"
            **style="@style/TabWidget**
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"/>

    </LinearLayout>
</TabHost>

styles.xml

<style name="TabWidget">
    <item name="android:background">@color/holo_gray_dark</item>
    *==> works fine light(default)->dark*
    <item name="android:textColor">@color/android_white</item>
    <item name="android:textColorHint">@color/android_white</item>
    <item name="android:textColorHighlight">@color/android_white</item>
    <item name="android:textColorLink">@color/android_white</item>
    *==> these did not work...*
</style>

结果,选项卡小部件是深黑色背景和深色文本。

如何将标签小部件更改为黑暗风格?

0 个答案:

没有答案