mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
23 lines
958 B
XML
23 lines
958 B
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"
|
|
tools:context="org.dolphinemu.dolphinemu.fragments.EmulationFragment">
|
|
|
|
<!-- This is what everything is rendered to during emulation -->
|
|
<SurfaceView
|
|
android:id="@+id/surface_emulation"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:focusable="false"
|
|
android:focusableInTouchMode="false"/>
|
|
|
|
<!-- This is the onscreen input overlay -->
|
|
<org.dolphinemu.dolphinemu.emulation.overlay.InputOverlay
|
|
android:id="@+id/surface_input_overlay"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"/>
|
|
</FrameLayout>
|