现在的位置: 首页 > 综合 > 正文

【TabHost】Android设置TabHost文字及图片

2017年09月19日 ⁄ 综合 ⁄ 共 488字 ⁄ 字号 评论关闭

Android TabHost 文字及图片的设置

 

TabWidget tabWidget=myTabhost.getTabWidget();//设置字体颜色
        for(int i=0;i<tabWidget.getChildCount();i++){

                    //设置显示文字
            TextView tv=(TextView)tabWidget.getChildAt(i).findViewById(android.R.id.title);

                   //设置显示图片            ImageView iv=(ImageView)tabWidget.getChildAt(i).findViewById(android.R.id.icon);
            iv.setPadding(0, 10, 0, 0);
            tv.setPadding(0, -5, 0, 0);
            tv.setTextColor(Color.BLACK);
           
        }

抱歉!评论已关闭.