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

 我来答
城南明月羿当年
推荐于2016-10-26 · 知道合伙人生活技巧行家
城南明月羿当年
知道合伙人生活技巧行家
采纳数:24666 获赞数:123229
计算机爱好者

向TA提问 私信TA
展开全部
1 int count = tabWidget.getChildCount();//TabHost中有一个getTabWidget()的方法
2 for (int i = 0; i < count; i++) {
3 View view = tabWidget.getChildTabViewAt(i);
4 view.getLayoutParams().height = 80; //tabWidget.getChildAt(i)
5 final TextView tv = (TextView) view.findViewById(android.R.id.title);
6 tv.setTextSize(28);
7 tv.setTextColor(this.getResources().getColorStateList(
8 android.R.color.white));
9 }
10
11 //解释二************************************************************************
12 int width =45;
13 int height =48;
14 for(int i = 0; i < tabWidget.getChildCount(); i++)
15 {
16 //设置高度、宽度,不过宽度由于设置为fill_parent,在此对它没效果
17 tabWidget.getChildAt(i).getLayoutParams().height = height;
18 tabWidget.getChildAt(i).getLayoutParams().width = width;
19 /**
20 * 下面是设置Tab的背景,可以是颜色,背景图片等
21 */
22 View v = tabWidget.getChildAt(i);
23 if (tabHost.getCurrentTab() == i) {
24 v.setBackgroundColor(Color.GREEN);
25 //在这里最好自己设置一个图片作为背景更好
26 //v.setBackgroundDrawable(getResources().getDrawable(R.drawable.chat));
27 } else {
28 v.setBackgroundColor(Color.GRAY);
29 }
30 }
墙角有一头野猪
推荐于2018-03-29 · TA获得超过373个赞
知道小有建树答主
回答量:557
采纳率:0%
帮助的人:105万
展开全部
可以通过一下代码实现改变Android tab 的高度和字体大小:
nt 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));
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式