2013-01-27 21:54:32 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key_bind_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:text="@string/key_bind_title"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key_bind_value"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignLeft="@+id/key_bind_title"
|
|
|
|
android:layout_below="@+id/key_bind_title"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2013-01-28 04:04:58 +00:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/key_bind_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_above="@+id/key_bind_clear"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@+id/key_bind_value"
|
|
|
|
android:entries="@array/key_bind_values" >
|
|
|
|
|
|
|
|
</ListView>
|
|
|
|
|
2013-01-27 21:54:32 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/key_bind_clear"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-01-28 04:04:58 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
2013-01-27 21:54:32 +00:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:text="@string/key_bind_clear" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|