2016. 2. 5. 11:05
Programming/Android
운영체제 : Windows 8.1 64bit Android Studio : 1.5 작성날짜 : 2016-02-05 |
참고 : stackoverflow - How to add search icon with text as hint in Text Field ?
아래와 같이 검색 시에 EditText에 텍스트뿐만 아니라 아이콘을 넣고 싶을때가 있다.
아래와 같이 설정해주면! 위와 같이 돋보기 아이콘이 들어간다.
android:drawableLeft="@drawable/ic_input_search" |
<EditText
android:layout_width="wrap_content"android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_input_search"
android:hint="@string/search"
android:id="@+id/ET_search" />
'Programming > Android' 카테고리의 다른 글
[Android] 언어 설정 하기 (0) | 2016.05.24 |
---|---|
[Android] Custom Progress Dialog 만들기 예제 (0) | 2016.04.27 |
[Android] 안드로이드 키보드 보이기, 숨기기 (0) | 2016.02.05 |
[Android] 해상도와 dpi, px, dp, dip, sp의 관계 (0) | 2016.02.03 |
[Android] 안드로이드 해상도 (0) | 2016.02.03 |