apple2ix/Android/app/src/main/res/layout/activity_chooser_keypad.xml
Aaron Culliney 85407cfabb Refactor GL Touch Joystick (PART II Java-is-not-native changes)
- Adds general key-tap-calibration callback to menus
    - Adds Touch Joystick Keypad settings menu including chooser and calibration
2015-08-18 22:17:12 -07:00

32 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="0dp"
android:layout_marginStart="0dp"
android:layout_marginRight="0dp"
android:layout_marginEnd="0dp"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
android:layout_weight="1"
android:background="#00ff0000">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/keypad_chosen_axis_keys"
android:id="@+id/textViewAxisChosenKeys"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/keypad_chosen_buttons_keys"
android:id="@+id/textViewButtonsChosenKeys"
android:layout_below="@id/textViewAxisChosenKeys"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</RelativeLayout>