在下面的tabview布局内容中如何获取每个textview的引用并以编程方式更改颜色,文本。?
例如,我想更改RF1235678 textview颜色和文字
答案 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);