=================================
=================================
=================================
출처: http://gogorchg.tistory.com/entry/Android-EditText-%EC%9E%90%EB%8F%99-%ED%8F%AC%EC%BB%A4%EC%8A%A4-%EC%A0%9C%EA%B1%B0
화면이 실행 되면 초반에 EditText에 자동 포커스가 되죠.
이부분을 제거하고 싶으실 경우 아래와 같이 해보세요.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="center_vertical"
android:orientation="vertical"
>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">
<android.support.v7.widget.AppCompatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/_121212"
android:textSize="@dimen/_15sp"
/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
아래 두줄을 EditText 에 넣는게 아니라 그걸 감싸고 있는 LinearLayout에 넣어주세요.
그럼 포커스가 LinearLayout으로 가게 됩니다.
android:focusable="true"
android:focusableInTouchMode="true"
참고하세요.
http://stackoverflow.com/questions/1555109/stop-edittext-from-gaining-focus-at-activity-startup
=================================
=================================
=================================
'스마트기기개발관련 > 안드로이드 개발' 카테고리의 다른 글
안드로이드 android 기본 런쳐 확인 및 런쳐 기본 설정 해제 방법 (0) | 2016.07.12 |
---|---|
안드로이드 android 다양한 앱 종료 방법 관련 (0) | 2016.07.11 |
안드로이드 android apk 앱 설치시 아이콘 숨기기 관련 (0) | 2016.07.07 |
안드로이드 android 앱에서 apk 다운로드 설치 코드하기 관련 (0) | 2016.07.05 |
안드로이드 webview 자바스크립트 \n\r 값을 스크립트로 넘겨줄때 엔터값이 안넘어갈때 방법 (0) | 2016.06.16 |