我的应用程序使用 ActionBarSherlock。
应用主题为 Theme.Sherlock.Light.DarkActionBar(如 Holo.Light.DarkActionBar)
而且我需要 2 深度选项卡(1 深度选项卡是操作栏选项卡),所以我制作了 TabHost 和 TabWidget。
布局.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>
样式.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>
结果,选项卡小部件是深色背景和深色文本。
如何将标签小部件更改为深色样式?