mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 06:32:48 +00:00
8dfc9241c6
should just be a (very dumb) launcher from now on
20 lines
607 B
XML
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>
|