forked from wheremyfoodat/Panda3DS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21638fa
commit d20908f
Showing
2 changed files
with
39 additions
and
11 deletions.
There are no files selected for viewing
11 changes: 0 additions & 11 deletions
11
src/pandroid/app/src/main/res/menu/game_drawer_actions.xml
This file was deleted.
Oops, something went wrong.
39 changes: 39 additions & 0 deletions
39
src/pandroid/app/src/main/res/menu/game_drawer_settings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |