2025-05-11 17:21:25 +02:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2025-05-13 08:31:02 +02:00
|
|
|
|
|
|
|
<!-- Settings section -->
|
2025-05-11 17:21:25 +02:00
|
|
|
<item
|
2025-05-13 08:31:02 +02:00
|
|
|
android:id="@+id/section_settings"
|
|
|
|
android:title="Settings"
|
|
|
|
android:enabled="false" />
|
2025-05-11 17:21:25 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_popup_settings"
|
|
|
|
android:title="Popup Settings"
|
|
|
|
android:icon="@drawable/tooltip_24px"
|
|
|
|
app:showAsAction="never" />
|
2025-05-13 08:31:02 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_contacts"
|
|
|
|
android:title="Contacts"
|
|
|
|
android:icon="@drawable/group_24px"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
<!-- About section -->
|
|
|
|
<item
|
|
|
|
android:id="@+id/section_about"
|
|
|
|
android:title="About"
|
|
|
|
android:enabled="false" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_about"
|
|
|
|
android:title="About"
|
|
|
|
android:icon="@drawable/info_24px"
|
|
|
|
app:showAsAction="never" />
|
2025-05-11 17:21:25 +02:00
|
|
|
</menu>
|