mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-16 10:02:58 -07:00
25% of the screen isn't necessarily wide enough on phones, especially not in portrait mode.
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:keepScreenOn="true"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/frame_content">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/frame_emulation_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<org.dolphinemu.dolphinemu.ui.NVidiaShieldWorkaroundView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:baselineAligned="false">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/frame_menu"
|
|
android:layout_width="260dp"
|
|
android:layout_height="match_parent"
|
|
tools:layout="@layout/fragment_ingame_menu"/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/frame_submenu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|