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