diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-10-25 21:14:11 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-10-25 21:14:11 -0400 |
| commit | 7c6caa388a934350bfc62349f74b4af3aa1413ee (patch) | |
| tree | 7be333381ca432aefe2577394129f8489eb9b4c0 /Source/Android | |
| parent | c1ed54832c69d2ab4fdc877b9cba74e2a07d673b (diff) | |
[Android] Prevent automatic alignments within the overlay configuration settings. Let the user do this on their own.
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/res/layout/input_overlay_config_layout.xml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Source/Android/res/layout/input_overlay_config_layout.xml b/Source/Android/res/layout/input_overlay_config_layout.xml index fc4b1bcf15..29b7e578a6 100644 --- a/Source/Android/res/layout/input_overlay_config_layout.xml +++ b/Source/Android/res/layout/input_overlay_config_layout.xml @@ -8,15 +8,20 @@ android:id="@+id/button_a" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:layout_alignParentTop="true" + android:layout_alignParentLeft="false" + android:layout_alignParentTop="false" + android:layout_centerHorizontal="false" + android:layout_centerVertical="false" android:background="@drawable/button_a" /> <org.dolphinemu.dolphinemu.settings.input.InputOverlayConfigButton android:id="@+id/button_b" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_alignParentTop="true" + android:layout_alignParentLeft="false" + android:layout_alignParentTop="false" + android:layout_centerHorizontal="false" + android:layout_centerVertical="false" android:layout_toRightOf="@+id/button_a" android:background="@drawable/button_b" /> @@ -24,8 +29,10 @@ android:id="@+id/button_start" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_alignParentTop="true" - android:layout_centerHorizontal="true" + android:layout_alignParentLeft="false" + android:layout_alignParentTop="false" + android:layout_centerHorizontal="false" + android:layout_centerVertical="false" android:layout_toRightOf="@+id/button_b" android:background="@drawable/button_start" /> |
