[Android] Prevent automatic alignments within the overlay configuration settings. Let the user do this on their own.
This commit is contained in:
parent
c1ed54832c
commit
7c6caa388a
|
@ -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" />
|
||||
|
||||
|
|
Loading…
Reference in New Issue