我想改变android tabhost
中标签的样式,我不想仅改变背景的颜色,而是改变整个样式(例如制作圆角)。
答案 0 :(得分: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);