本文实例讲述了Android编程设置TabHost当中字体的方法。分享给大家供大家参考,具体如下:
TabWidget tw=this.getTabWidget();//设置TabHost当中的内容的方法
for(int i=0;i<tw.getChildCount();i++){
//设置TabHost字体的相关方法
TextView tv=(TextView)tw.getChildAt(i).findViewById(android.R.id.title);
tv.setGravity(BIND_AUTO_CREATE);
tv.setPadding(10, 10, 10, 10);
tv.setTextSize(20);
tv.setTextColor(Color.GREEN);
//同理,设置TabHost背景图片的相关方法如下
ImageView iv=(ImageView)tw.getChildAt(i).findViewById(android.R.id.icon);
iv.setAlpha(1);//设置透明度,设置背景图片的其他属性,在此不一一列举!
}
希望本文所述对大家Android程序设计有所帮助。
您可能感兴趣的文章:Android组件TabHost实现页面中多个选项卡切换效果android TabHost(选项卡)的使用方法android 选项卡(TabHost)如何放置在屏幕的底部Android组件必学之TabHost使用方法详解Android控件之TabHost用法实例分析Android 使用FragmentTabhost代替Tabhost详解Android应用中使用TabHost组件进行布局的基本方法详解Android TabHost的多种实现方法 附源码下载Android Tabhost使用方法详解Android TabHost组件使用方法详解Android TabHost选项卡标签图标始终不出现的解决方法