summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/fragment_emulation.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/res/layout/fragment_emulation.xml')
-rw-r--r--src/android/app/src/main/res/layout/fragment_emulation.xml39
1 files changed, 19 insertions, 20 deletions
diff --git a/src/android/app/src/main/res/layout/fragment_emulation.xml b/src/android/app/src/main/res/layout/fragment_emulation.xml
index 729a986db..c2eb097f9 100644
--- a/src/android/app/src/main/res/layout/fragment_emulation.xml
+++ b/src/android/app/src/main/res/layout/fragment_emulation.xml
@@ -6,6 +6,17 @@
tools:context="org.yuzu.yuzu_emu.fragments.EmulationFragment">
<!-- This is what everything is rendered to during emulation -->
+ <Button
+ android:id="@+id/done_control_config"
+ style="@style/Widget.Material3.Button.Icon"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:padding="@dimen/spacing_small"
+ android:text="@string/emulation_done"
+ android:visibility="gone" />
+
+ <!-- This is the onscreen input overlay -->
<SurfaceView
android:id="@+id/surface_emulation"
android:layout_width="match_parent"
@@ -13,20 +24,12 @@
android:focusable="false"
android:focusableInTouchMode="false" />
- <!-- This is the onscreen input overlay -->
- <org.yuzu.yuzu_emu.overlay.InputOverlay
- android:id="@+id/surface_input_overlay"
- android:layout_height="match_parent"
- android:layout_width="match_parent"
- android:focusable="true"
- android:focusableInTouchMode="true" />
-
<TextView
android:id="@+id/show_fps_text"
- android:layout_marginStart="18dp"
- android:layout_marginTop="2dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_marginStart="18dp"
+ android:layout_marginTop="2dp"
android:clickable="false"
android:linksClickable="false"
android:longClickable="false"
@@ -34,15 +37,11 @@
android:textColor="@android:color/white"
android:textSize="12sp" />
- <Button
- android:id="@+id/done_control_config"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:padding="@dimen/spacing_small"
- android:background="@color/citra_orange"
- android:text="@string/emulation_done"
- android:visibility="gone" />
+ <org.yuzu.yuzu_emu.overlay.InputOverlay
+ android:id="@+id/surface_input_overlay"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:focusable="true"
+ android:focusableInTouchMode="true" />
</FrameLayout>
-t>