0

我想更改 android 中选项卡的样式tabhost,我不想只更改背景颜色,而是更改整个样式(例如制作圆角)。

4

1 回答 1

0

TabHost您可以在其中放置一个Button或任何其他具有首选样式的小部件,即使是圆角

Button myButton = new Button(this);
myButton.setText("My Button");
myButton.setBackgroundColor(Color.TRANSPARENT);
myButton.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.my_button_drawable_top, 0, 0);
TabHost.TabSpec myButtonTab = mTabHost.newTabSpec("tab1").setIndicator(myButton).setContent(intentPlayList);
mTabHost.addTab(myButtonTab);
于 2012-07-04T20:38:12.080 回答