mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-12-26 23:52:39 +00:00
49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:keepScreenOn="true"
|
|
tools:context="org.yuzu.yuzu_emu.fragments.EmulationFragment">
|
|
|
|
<!-- This is what everything is rendered to during emulation -->
|
|
<SurfaceView
|
|
android:id="@+id/surface_emulation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
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:clickable="false"
|
|
android:linksClickable="false"
|
|
android:longClickable="false"
|
|
android:shadowColor="@android:color/black"
|
|
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" />
|
|
|
|
</FrameLayout>
|
|
t>
|