天天看點

drawleft,textview、EditText中圖檔大小設定

很多時候我們在textview或者edittext等的控件裡面設定圖檔,比如搜尋。

如果想要改變圖檔的大小,隻要在代碼裡面設定:

//比如drawleft設定圖檔大小
    //擷取圖檔
    Drawable drawable = getResources().getDrawable(R.mipmap.search);
    //第一個0是距左邊距離,第二個0是距上邊距離,40分别是長寬
    drawable.setBounds(0, 0, 30, 30);
    //隻放左邊
    searchBox.setCompoundDrawables(drawable, null, null, null);
           

好了,我們的圖檔大小設定成功!