我想在android tabhost
中更改选项卡的样式,我不想只更改背景的颜色,而是整个样式(例如制作圆角)。
> 在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);