Skip to content

Instantly share code, notes, and snippets.

@akexorcist
Last active December 28, 2015 20:39
Show Gist options
  • Save akexorcist/7558524 to your computer and use it in GitHub Desktop.
Save akexorcist/7558524 to your computer and use it in GitHub Desktop.
ยกเลิก Focus ที่ Edit Text เมื่อเข้าสู่หน้านั้นๆ
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true" >
<requestFocus />
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/editText1"
android:layout_centerHorizontal="true" />
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:ems="10" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment