mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-03-13 07:00:10 +01:00
18 lines
560 B
XML
18 lines
560 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<item
|
|
android:id="@+id/share"
|
|
android:icon="@mipmap/share"
|
|
android:title="@string/share"
|
|
app:showAsAction="ifRoom"/>
|
|
<item
|
|
android:id="@+id/settings"
|
|
android:title="@string/settings"
|
|
app:showAsAction="never"/>
|
|
<item
|
|
android:id="@+id/about"
|
|
android:title="@string/about"
|
|
app:showAsAction="never"/>
|
|
</menu>
|