RetroArch/android/phoenix/res/layout/key_bind_dialog.xml
twinaphex 8dfc9241c6 (Android) Remove a bunch of dead code in Android Java menu - this
should just be a (very dumb) launcher from now on
2015-07-03 19:27:16 +02:00

20 lines
607 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/key_bind_dialog"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
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:ems="10"
android:inputType="text" >
<requestFocus />
</EditText>
</RelativeLayout>