summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/activity_emulation.xml
blob: debc26e6cc2290ab407e592e7a495b381edfabc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<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"/>

    <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="@dimen/menu_width"
            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>