我正在創建一個帶有用戶名和密碼字段的登錄窗口,並且在每個圖標中都想放置圖標。當我將圖標添加到EditText字段時,我無法更改圖標的大小。是否可以更改EditText中的圖標大小
圖標位於EditText字段內部,因爲我想在聚焦時更改EditText背景。
我試圖在LinearLayout中放置圖標和EditText視圖,但是當EditText被關注時,我無法更改佈局背景。
我的EditText代碼:
<EditText
android:id="@+id/user_name_edit_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:layout_marginTop="35dp"
android:background="@drawable/custom_border_selector"
android:drawablePadding="5dp"
android:hint="@string/username"
android:singleLine="true"
android:textColor="#757575"
android:textSize="15sp"
android:drawableLeft="@drawable/ic_person_grey_24dp"
/>
的EditText視覺:
檢查此鏈接:http://stackoverflow.com/questions/20250638/how-to-create-edittext-hint-as-text-with-image-in-android – Mrunal
@ Rohit5k2它將聽起來很蠢我的,但我沒有想到,謝謝。還有一個問題,我找不到爲圖像添加填充或邊距的方法?我試圖谷歌,幾個小時,沒有有用的信息。 – JonasSeputis
@JonasSeputis:請檢查。 – Rohit5k2