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中设置TabHost当中的字体的方法)