mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 00:40:06 +00:00
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>
|