Panda3DS/src/pandroid/app/src/main/res/layout/controller_dpad.xml
2023-11-28 13:37:49 +02:00

28 lines
No EOL
1,012 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="96dp"
android:layout_height="96dp">
<com.panda3ds.pandroid.view.controller.nodes.Button
android:id="@+id/button_up"
style="@style/ControllerSimpleButton"
android:layout_marginLeft="30dp"/>
<com.panda3ds.pandroid.view.controller.nodes.Button
android:id="@+id/button_left"
style="@style/ControllerSimpleButton"
android:layout_marginTop="30dp"/>
<com.panda3ds.pandroid.view.controller.nodes.Button
android:id="@+id/button_down"
style="@style/ControllerSimpleButton"
android:layout_marginTop="60dp"
android:layout_marginLeft="30dp"/>
<com.panda3ds.pandroid.view.controller.nodes.Button
android:id="@+id/button_right"
style="@style/ControllerSimpleButton"
android:layout_marginTop="30dp"
android:layout_marginLeft="60dp"/>
</RelativeLayout>