Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改下图中显示的 tabwidget 的背景:
我想使用不同的背景颜色,并将字体颜色更改为选定的选项卡。我怎样才能做到这一点?
你可以用谷歌搜索不同颜色的表格 这是一个带有颜色的图表或表格,以及获得该颜色的代码
只要选择你喜欢的
为此,我将可绘制对象用于选项卡小部件,而不是固定图像。我的代码是
tab1.setImageDrawable(getResources().getDrawable(R.drawable.tab_drawable));
tab_drawable 中是一个简单的选择器,用于定义不同状态的可绘制对象的行为。你可以试试,它非常有用。