Как установить цвет текста в представлении SetIndicator? - PullRequest
0 голосов
/ 03 февраля 2011

Ниже приведен мой код для действия TabView. Кто-нибудь есть идея, как установить TextColor в моем представлении SetIndicator для TabView?

public class TabView extends TabActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Resources res=getResources();



        TabHost tabhost=getTabHost();
        TabHost.TabSpec restab;
        Intent intent;

        intent=new Intent().setClass(this, Home.class);

        restab=tabhost.newTabSpec("Home").setIndicator("Home",res.getDrawable(R.drawable.home)).setContent(intent);
        tabhost.addTab(restab);

        intent=new Intent().setClass(this, Search.class);
        restab=tabhost.newTabSpec("Search").setIndicator("Search",res.getDrawable(R.drawable.search_icon1)).setContent(intent);
        tabhost.addTab(restab);

        intent=new Intent().setClass(this, Back.class);
        restab=tabhost.newTabSpec("Back").setIndicator("Back",res.getDrawable(R.drawable.back_icon)).setContent(intent);
        tabhost.addTab(restab);
       for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)
       {


           tabhost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#CCCCCC"));
       }

    }
}

1 Ответ

1 голос
/ 09 мая 2011

Вы можете использовать TextView для отдельных лиц.Как это:

for(int i = 0; i < tabhost.getTabWidget().getChildCount(); i++) {
   tabhost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#CCCCCC"));
   TextView textView = (TextView) tabWidget.getChildAt(i).findViewById(android.R.id.title);
   textView.setTextColor(Color.BLACK);
}
...