Android Tabwidget以编程方式更改Textview颜色

时间:2015-06-09 06:40:03

标签: android-tabhost

在下面的tabview布局内容中如何获取每个textview的引用并以编程方式更改颜色,文本。?

例如,我想更改RF1235678 textview颜色和文字

enter image description here

1 个答案:

答案 0 :(得分: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);