TabWidget背景颜色更改

时间:2012-06-06 08:33:43

标签: android xml colors android-tabhost tabwidget

我想更改TabWidget的背景颜色。我有一张我不想改变的标签图片,我只想更改该图像的背景颜色而不用其他图像替换它,这是我的代码。

<?xml version ="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- When selected color blue -->
    <item android:drawable="@drawable/profile"
        android:state_selected="true"/>
    <!-- When NOT selected color black -->
    <item android:state_selected="false" android:drawable="@drawable/profile">

    </item>
</selector>

例如,在以下行(选择时间)中放置类似的东西。

<item android:state_selected="false" android:drawable="@drawable/profile" android:backgroundColor="#5397CB">

并且在NOTselected状态下为黑色..

<item android:state_selected="false" android:drawable="@drawable/profile" android:backgroundColor="#fffff">

0 个答案:

没有答案