你能告诉我如何在android中设置tabview的背景吗?
答案 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"