summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/activity_cheats.xml
blob: b9414ab6de9ae52042a2694097b625a537041403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<androidx.slidingpanelayout.widget.SlidingPaneLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/sliding_pane_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.fragment.app.FragmentContainerView
        android:layout_width="320dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:id="@+id/cheat_list"
        android:name="org.citra.citra_emu.features.cheats.ui.CheatListFragment" />

    <androidx.fragment.app.FragmentContainerView
        android:layout_width="320dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:id="@+id/cheat_details"
        android:name="org.citra.citra_emu.features.cheats.ui.CheatDetailsFragment" />

</androidx.slidingpanelayout.widget.SlidingPaneLayout>