我遇到过这个问题。我在视图顶部有一个选项卡小部件,其中有四个选项卡。我被要求更改整个选项卡视图区域的背景颜色。不是针对任何选项卡,而是针对该选项卡视图的整个区域。
由于某些品牌原因,我还被要求不要更改任何源代码。所以我只能通过xml文件来做。我四处搜索,但似乎所有解决方案都是使用 java 代码。所以我想知道是否有一种方法可以通过仅使用资源文件来更改小部件背景颜色(只是颜色,而不是图像)?
这是我的选项卡布局的布局文件:
<?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">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp"
>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/tabbackgroundcolor" />
<FrameLayout
android:layout_below="@android:id/tabs"
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp"
/>
</RelativeLayout>
</TabHost>
您可以看到我在 TabWidget 部分添加了“android:background="@color/tabbackgroundcolor"”,但是它不起作用..
谢谢!