如何改变Android tab 的高度和字体大小

来源:互联网 发布:最全网络理财服务 编辑:程序博客网 时间:2024/06/16 19:00

这几天由于项目原因,需要调整tab 的高度和字体大小,没少折腾人。。希望能对有此困扰的朋友,尽点绵薄之力。。如果大家找到这里来了。算是找对地方了。。哈哈哈

直接上代码,发扬分享至上的互联网精神。。。

  int count = tabWidget.getChildCount();
  for (int i = 0; i < count; i++) {
   View view = tabWidget.getChildTabViewAt(i);   
   view.getLayoutParams().height = 80; //tabWidget.getChildAt(i)
   final TextView tv = (TextView) view.findViewById(android.R.id.title);
   tv.setTextSize(28);
   tv.setTextColor(this.getResources().getColorStateList(
     android.R.color.white));
  }

原创粉丝点击