SearchView 기능을 추가하고 났더니, SearchView 포커스가 자동으로 키 입력을 기다리고 있어서 영 불편하다.
activity_main.xml 파일에서 아래 빨간색으로 표시된 부분을 추가하면 자동으로 포커스가 잡히는 것이 해제된다.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical">
<SearchView android:id="@+id/search" android:layout_width="fill_parent" android:layout_height="wrap_content" android:iconifiedByDefault="false" android:focusable="false" android:focusableInTouchMode="false">
<requestFocus /> </SearchView>
<RelativeLayout android:id="@+id/list_view_relative2" android:layout_width="match_parent" android:layout_height="50dp" android:background="@color/whitegray" >
<CheckBox android:id="@+id/lv_checkbox_all" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:text="전체선택" android:textColor="#000000" android:textStyle="bold" />
<Button android:id="@+id/btn_cancle" android:layout_width="51dp" android:layout_height="33dp" android:layout_marginLeft="10dp" android:layout_centerVertical="true" android:background="@drawable/btn_send_cancel" />
<Button android:id="@+id/btn_send" android:layout_width="51dp" android:layout_height="33dp" android:layout_centerVertical="true" android:layout_marginLeft="30dp" android:layout_toRightOf="@+id/btn_cancle" android:background="@drawable/btn_send_act" />
</RelativeLayout>
<ListView android:id="@+id/listview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@+id/search" />
</LinearLayout> |