2013-08-29 13:13:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-08-29 17:20:46 -04:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-08-29 13:13:44 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<!-- This is what everything is rendered to during emulation -->
|
2013-09-23 07:14:51 -04:00
|
|
|
<org.dolphinemu.dolphinemu.emulation.NativeGLSurfaceView
|
2013-08-29 13:13:44 -04:00
|
|
|
android:id="@+id/emulationView"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"/>
|
|
|
|
|
2013-10-25 17:39:23 -04:00
|
|
|
<!-- This is the onscreen input overlay -->
|
2013-10-25 16:52:46 -04:00
|
|
|
<org.dolphinemu.dolphinemu.emulation.overlay.InputOverlay
|
|
|
|
android:id="@+id/emulationControlOverlay"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"/>
|
|
|
|
|
2013-08-29 17:20:46 -04:00
|
|
|
</merge>
|