将背景设置为android中的tabview

时间:2011-09-14 10:24:42

标签: android

你能告诉我如何在android中设置tabview的背景吗?

1 个答案:

答案 0 :(得分:0)

在文件夹值中,输入:

<resources>
    <color name="green">#ff00ff00</color>
</resources>
在colors.xml文件中

在你的java代码中:

tb.setBackgroundResource(R.color.green); //where tb is your tabview

如果你想在xml中尝试:

android:background="@color/green"