mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-23 19:17:57 +03:00
3057e4b29a
* Fix missing default constructor for dialog fragments
27 lines
1006 B
XML
27 lines
1006 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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=".EmulationActivity">
|
|
|
|
<SurfaceView
|
|
android:id="@+id/game_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<emu.skyline.input.onscreen.OnScreenControllerView
|
|
android:id="@+id/on_screen_controller_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/perf_stats"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:textColor="#9fffff00" />
|
|
</FrameLayout>
|