mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-02-03 06:50:28 +03:00
4d787c904e
This commit makes a few improvements to the UI/UX: * Crop Game Icons to ImageView * Controller Support for Game List * EmulationActivity is fullscreen now
27 lines
1001 B
XML
27 lines
1001 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/perf_stats"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:textColor="#9fffff00" />
|
|
|
|
</RelativeLayout>
|