블로그 이미지
Kanais
Researcher & Developer 퍼즐을 완성하려면 퍼즐 조각들을 하나 둘씩 맞춰나가야 한다. 인생의 퍼즐 조각들을 하나 둘씩 맞춰나가다 보면 인생이란 퍼즐도 완성되는 날이 오려나...?

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

05-12 00:10

Recent Post

Recent Comment

Recent Trackback

Archive

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" />


posted by Kanais