0
我想更改android中選項卡的樣式,我不想僅更改背景的顏色,而是更改整個樣式(例如使圓角)。如何更改android tabhost中選項卡的樣式?
我想更改android中選項卡的樣式,我不想僅更改背景的顏色,而是更改整個樣式(例如使圓角)。如何更改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);