2012-07-04 78 views

回答

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); 
相關問題