안드로이드 EditText 자동 포커스 막기

Posted by Breeze24
2016. 6. 5. 00:03 Android/TroubleShooting
안드로이드 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>

.