[Android1.5]标签TabHost图片文字覆盖的问题
前言
TabHost的Lab如果使用32x32的图片是没有这个问题的,使用稍大如48x48就有问题了,这里通过调整坐标和缩小字体来解决这个问题。
文章
正文
一、 调整前贴图
二、 调整后贴图
三、 调整代码
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号。
结束
关于TabHost可以阅读,文章中的两篇文章,很不错,多多收集讲得这么详细的好文章。