EditText利用程式碼設定左側的圖示,失效???
EditText有兩種設定圖示的方法:
1、setCompoundDrawables(left, top, right, bottom)
這個方法,必須設定寬高使,用之前必須使用Drawable.setBounds設定Drawable的長寬。
2、setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom)
這個方法,是照drawable的寬高畫的圖片。
所以在程式碼裡面,使用setCompoundDrawablesWithIntrinsicBounds就會顯示出來圖片。