如何在android tabhost中更改选项卡的样式?

时间:2012-07-04 20:26:30

标签: android android-tabhost android-style-tabhost

我想改变android tabhost中标签的样式,我不想仅改变背景的颜色,而是改变整个样式(例如制作圆角)。

1 个答案:

答案 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);