2015-06-09 69 views

回答

3

@Vishwanath

TabSpec tab1 = tabHost.newTabSpec("First Tab"); 

TextView textView = new TextView(this); 
textView.setText("exampletab"); 
textView.setTextColor(Color.BLUE); 
tab1.setIndicator(textView); 

tabHost.addTab(tab1); 
+0

事實上,你可以完全自定義您的texview。 –

相關問題