TextView drawableRight in code

LittlePanpc

The best is yet to come.

对TextView设置drawable,用setCompoundDrawables方法实现

在上一项目上需要对TextView在xml文件中设置的drawableLeft的图片进行更改,查询了资料好久也没有找到解决办法,如下代码所示:

 commentTV.setCompoundDrawables(drawable, null, null, null);

后来又经过在stackoverflow,sourceforge等网站上进行询问,才发现是因为缺少了对drawable的边界进行处理,修改后的可起作用代码如下:

 Drawable drawable = getResources().getDrawable(R.drawable.edit_icon);
 drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
 commentTV.setCompoundDrawables(drawable, null, null, null);


你可能感兴趣的:(TextView drawableRight in code)