summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/activity_cheats.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/res/layout/activity_cheats.xml')
-rw-r--r--src/android/app/src/main/res/layout/activity_cheats.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/activity_cheats.xml b/src/android/app/src/main/res/layout/activity_cheats.xml
new file mode 100644
index 000000000..b9414ab6d
--- /dev/null
+++ b/src/android/app/src/main/res/layout/activity_cheats.xml
@@ -0,0 +1,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>