안드로이드 EditText 자동 포커스 막기
아래 두 라인을 제일 바깥에 있는 LinearLayout에 추가한다.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:focusable="true"
android:focusableInTouchMode="true"
android:background="@drawable/item_back_large2"
android:orientation="vertical" >
<EditText
android:id="@+id/editTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:inputType="text"
android:ems="10" >
</EditText>
</LinearLayout>
.'Android > TroubleShooting' 카테고리의 다른 글
안드로이드 메모리 관리 (2) | 2016.06.05 |
---|---|
ViewPager 애니메이션 (2) | 2016.06.05 |
안드로이드 숨김 폴더 만들기 (0) | 2016.06.05 |
FLAG_ACTIVITY_NO_HISTORY 의 문제점 (0) | 2016.06.05 |
갤러리 선택창 호출하여 선택 이미지 URI 받기 (0) | 2016.06.05 |