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);