2020-04-18 02:16:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-03 12:09:35 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-10-05 12:56:38 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-18 02:16:09 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:keepScreenOn="true"
|
2020-10-05 12:56:38 +02:00
|
|
|
tools:background="@android:color/black"
|
2020-04-18 02:16:09 +02:00
|
|
|
tools:context=".EmulationActivity">
|
|
|
|
|
|
|
|
<SurfaceView
|
|
|
|
android:id="@+id/game_view"
|
|
|
|
android:layout_width="match_parent"
|
2020-10-05 12:56:38 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:visibility="invisible" />
|
2020-10-03 12:09:35 +02:00
|
|
|
|
|
|
|
<emu.skyline.input.onscreen.OnScreenControllerView
|
|
|
|
android:id="@+id/on_screen_controller_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2020-04-18 02:16:09 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/perf_stats"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
android:layout_marginTop="5dp"
|
2020-04-19 22:10:28 +02:00
|
|
|
android:textColor="#9fffff00" />
|
2020-10-05 12:56:38 +02:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/on_screen_controller_toggle"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:src="@drawable/ic_show"
|
|
|
|
app:tint="#40FFFFFF"
|
|
|
|
tools:ignore="ContentDescription" />
|
2020-10-03 12:09:35 +02:00
|
|
|
</FrameLayout>
|