如何在安卓标签主机中更改选项卡的样式



我想在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);

相关内容

  • 没有找到相关文章

最新更新