Skip to content

Commit

Permalink
fx
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishan09811 authored Feb 6, 2024
1 parent 21638fa commit d20908f
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/pandroid/app/src/main/res/menu/game_drawer_actions.xml

This file was deleted.

39 changes: 39 additions & 0 deletions src/pandroid/app/src/main/res/menu/game_drawer_settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<!-- First category: Actions -->
<group android:id="@+id/group_actions">
<!-- Header for the Actions category -->
<item
android:id="@+id/header_actions"
android:title="Actions"
android:checkable="false"
android:enabled="false" />

<!-- Items within the Actions category -->
<item
android:id="@+id/action_resume"
android:icon="@drawable/ic_resume"
android:title="Resume" />
<!-- Add more items as needed for Actions -->

<!-- Second category: Others -->
<group android:id="@+id/group_others">
<!-- Header for the Others category -->
<item
android:id="@+id/header_others"
android:title="Others"
android:checkable="false"
android:enabled="false" />

<!-- Items within the Others category -->
<item
android:id="@+id/other_change_orientation"
android:icon="@drawable/ic_rotate_screen"
android:title="Change Orientation" />
<item
android:id="@+id/other_lua_script"
android:icon="@drawable/ic_code"
android:title="Lua Script" />
<!-- Add more items as needed for Others -->
</group>
</group>
</menu>

0 comments on commit d20908f

Please sign in to comment.