一、 调整前贴图
二、 调整后贴图
三、 调整代码
View view
=
tabs.getTabWidget().getChildAt(
0
);
((TextView)view.findViewById(android.R.id.title)).setTextSize( 12 );
((ImageView)view.findViewById(android.R.id.icon)).setPadding( 0 , - 5 , 0 , 0 );
((TextView)view.findViewById(android.R.id.title)).setTextSize( 12 );
((ImageView)view.findViewById(android.R.id.icon)).setPadding( 0 , - 5 , 0 , 0 );
代码说明:
a). 这里使用系统默认的容器 com.android.internal.R.layout.tab_content,title和icon为系统内置的id号。
本文转自博客园农民伯伯的博客,原文链接:[Android1.5]标签TabHost图片文字覆盖的问题,如需转载请自行联系原博主。