본문 바로가기

소프트웨어 /안드로이드[Java]

[Android] EditText 자동 포커스 없애기

반응형

EditText에 자동으로 포커스가 잡혀 불편한 적이 있을거다.

그때 포커스를 없애고 싶은 editText의 상위 레이아웃에 아래의 코드를 추가해주면 된다.

editText 대신 상위 레이아웃에 포커스를 두는 방법이다.


ex) 

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true">

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>

 

android:focusable="true"
android:focusableInTouchMode="true"