-
[Android] EditText 자동으로 포커스 막기 (Prevent auto focus)Android 2020. 6. 22. 01:26반응형
제일 처음 EditText로 Focus가 가서 키패드가 올라올 때가 있는데이를 막으려면
EditText(제일 첫번째)를 포함하는 상위 Layout를 포커스가 가능하게 변경하면 된다.
상위 Layout에 아래 두개 옵션을 추가해준다.
android:focusable="true" android:focusableInTouchMode="true"
ex)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/base_background" android:orientation="vertical" android:focusableInTouchMode="true" android:focusable="true"> <EditText android:id="@+id/et_id" android:layout_width="match_parent" android:layout_height="50dp" android:layout_marginTop="6dp" android:background="@drawable/rectangle_grey_f6f6f6_radius_2dp" android:gravity="center_vertical" android:hint="@string/login_02" android:inputType="textEmailAddress" android:paddingStart="16dp" android:paddingEnd="16dp" android:textColorHint="@color/grey_3_d0d0d0" android:text="@={userId}"/> ...
반응형'Android' 카테고리의 다른 글