如何在 SetIndicator 视图中设置文本颜色?

发布于 2024-10-15 08:58:24 字数 1312 浏览 4 评论 0原文

下面是我的 TabView 活动代码。有人知道如何在 TabView 的 SetIndicator 视图中设置 TextColor 吗?

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"));
       }

    }
}

Below is my Code For the TabView Activity. Any one have idea how to set TextColor in the my SetIndicator view for 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"));
       }

    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷清清 2024-10-22 08:58:24

个人可以使用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);
}

You can use TextView for individual. Like this:

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);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文