EditText 부분을 XML에서
android:id="@+id/say_hello"
android:text="안녕하세요."
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1.0"
android:lines="1" />
edittext 클릭하면 안녕하세요 사라지게 하려면
android:hint="안녕하세요" 라고
text -> hint 로 변경해주면 간단히 된다.
android:id="@+id/say_hello"
android:text="안녕하세요."
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1.0"
android:lines="1" />
edittext 클릭하면 안녕하세요 사라지게 하려면
android:hint="안녕하세요" 라고
text -> hint 로 변경해주면 간단히 된다.
'개발도구 > aOS - 안드로이드 개발' 카테고리의 다른 글
[안드로이드] 마켓 주소 알아 내기 (0) | 2012.02.01 |
---|---|
[안드로이드] startService 구현 (0) | 2012.01.30 |
[안드로이드] webview 에서 특정 문자에 반응하기(새창으로) shouldOverrideUrlLoading (1) | 2012.01.27 |
[안드로이드] Manifest SdkVersion (0) | 2012.01.27 |
[안드로이드] webview 에서 twitter 멈춤현상 (0) | 2012.01.25 |