标签TabHost图片文字覆盖的问题

来源:互联网 发布:pc蛋蛋手机源码 编辑:程序博客网 时间:2024/04/28 23:12

前言

   TabHost的Lab如果使用32x32的图片是没有这个问题的,使用稍大如48x48就有问题了,这里通过调整坐标和缩小字体来解决这个问题。

 

文章

  1.  tab in android

  2.  android Tabhost部件

 

正文

  一、 调整前贴图

     

 

  二、 调整后贴图

     

 

  三、 调整代码

        View view = tabs.getTabWidget().getChildAt(0);
        ((TextView)view.findViewById(android.R.id.title)).setTextSize(
12);
        ((ImageView)view.findViewById(android.R.id.icon)).setPadding(
0-500);

    代码说明:

      a).  这里使用系统默认的容器 com.android.internal.R.layout.tab_content,title和icon为系统内置的id号。


原创粉丝点击