代码code设置9.png/9-patch 图片背景后,此view中的TextView等控件显示不正常(常见于listview中)


因为需求的缘故,需要对liview显示项做黑白相间的处理:

其实就是在函数public View getView(int position, View convertView, ViewGroup parent)

中,加上:

if (position % 2 == 0) {  
                convertView.setBackgroundResource(R.drawable.list_gray_9);  
            } else {  
                convertView.setBackgroundResource(R.drawable.list_white_9);  
            }  

可是,正如上述代码可见,我加入的是9-patch图片,直接导致我的convertView中的内容无法正常显示了。

这可怎么办呢?我在xml中直接设置9-patch给一个layout什么的,都是正常显示呀,这个怎么就出问题了呢?

问题在于以下函数:

public void setBackgroundResource (int resid) Set the background to a given resource. The resource should refer to a Drawable object or 0 to remove the background.

也就是说,其实setBackgroundResource接着调用的应该是:setBackgroundDrawable函数,让我们看看setBackgroundDrawable的描述:

public void setBackgroundDrawable (Drawable d) Since: API Level 1 Set the background to a given Drawable, or remove the background.If the background has padding, this View's padding is set to the background's padding. However, when a background is removed, this View's padding isn't touched. If setting the padding is desired, please use setPadding(int, int, int, int).Parametersd The Drawable to use as the background, or null to remove the background

也就是说,因为9-patch有自己的padding,所以convertView自己的padding被覆盖了!那可咋办呢?

其实知道这个了就很简单了,只要在代码setBackgroundResource之后加上(Remember:一定是这句之后!)一句:

convertView.setPadding(0, 0, 0, 0);

就可以解决问题了~

优质内容筛选与推荐>>
1、FMS共享对象示例用法
2、【AT2061】[集训队作业] Tree Restoring 【结论题】
3、洛谷P1357 花园(状态压缩 + 矩阵快速幂加速递推)
4、特征选择
5、安装gstreamer


长按二维码向我转账

受苹果公司新规定影响,微信 iOS 版的赞赏功能被关闭,可通过二维码转账支持公众号。

    阅读
    好看
    已推荐到看一看
    你的朋友可以在“发现”-“看一看”看到你认为好看的文章。
    已取消,“好看”想法已同步删除
    已推荐到看一看 和朋友分享想法
    最多200字,当前共 发送

    已发送

    朋友将在看一看看到

    确定
    分享你的想法...
    取消

    分享想法到看一看

    确定
    最多200字,当前共

    发送中

    网络异常,请稍后重试

    微信扫一扫
    关注该公众号