位置: 首页

Android TabHost中标签Tab的高度和宽度

设置Tab高度和宽度

final TabWidget tabWidget = tabHost.getTabWidget();

for (int i =0; i < tabWidget.getChildCount(); i++) {

tabWidget.getChildAt(i).getLayoutParams().height = 60;

tabWidget.getChildAt(i).getLayoutParams().width = 65;

}

注意:若要使设置的高度和宽度有效,在界面定义文件中TabWidget的布局参数的宽度和高度应设置为wrap_content,如

<TabWidget android:id=”@android:id/tabs” android:layout_width=”fill_parent” android:layout_height=”wrap_content” /> Read More…

改变 TabHost 默认样式的高度、字体

 

 

 

 

 

 

 

 

 
Read More…