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

}
myTabhost 是一个Tabhost
posted @ 2011-12-01 14:11  陈鹏C  阅读(5002)  评论(0编辑  收藏  举报