LittlePanpchtml
The best is yet to come.网站
在上一项目上须要对TextView在xml文件中设置的drawableLeft的图片进行更改,查询了资料很久也没有找到解决办法,以下代码所示:spa
commentTV.setCompoundDrawables(drawable, null, null, null);
后来又通过在stackoverflow,sourceforge等网站上进行询问,才发现是由于缺乏了对drawable的边界进行处理,修改后的可起做用代码以下:code
Drawable drawable = getResources().getDrawable(R.drawable.edit_icon); drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight()); commentTV.setCompoundDrawables(drawable, null, null, null);