mirror of
https://github.com/gsantner/dandelion
synced 2024-11-16 01:12:08 +01:00
54 lines
1.6 KiB
XML
54 lines
1.6 KiB
XML
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
tools:context=".activity.MainActivity">
|
||
|
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_search"
|
||
|
android:icon="@drawable/fab_search"
|
||
|
app:showAsAction="always"
|
||
|
android:title="@string/search_by_tags_or_persons" />
|
||
|
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_compose"
|
||
|
android:icon="@drawable/fab_compose"
|
||
|
app:showAsAction="always"
|
||
|
android:title="@string/compose" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_share"
|
||
|
android:icon="@drawable/ic_share_white_24dp"
|
||
|
android:title="@string/jb_share"
|
||
|
app:showAsAction="always" />
|
||
|
|
||
|
<!--
|
||
|
<item
|
||
|
android:id="@+id/action_share2"
|
||
|
android:icon="@drawable/ic_share_white_24dp"
|
||
|
android:title="@string/jb_share"
|
||
|
app:showAsAction="always" >
|
||
|
<menu>
|
||
|
<item android:id="@+id/item1" android:title="@string/search_alert_people"></item>
|
||
|
<item android:id="@+id/item2" android:title="@string/search_alert_tag"></item>
|
||
|
</menu>
|
||
|
</item> -->
|
||
|
|
||
|
<!-- Keep right most -->
|
||
|
<item
|
||
|
android:id="@+id/action_go_to_top"
|
||
|
android:icon="@drawable/fab_top"
|
||
|
android:title="@string/go_to_top"
|
||
|
app:showAsAction="always"/>
|
||
|
|
||
|
|
||
|
<!-- overflow menu -->
|
||
|
<item
|
||
|
android:id="@+id/action_exit"
|
||
|
android:icon="@drawable/ic_sync_white_24dp"
|
||
|
android:title="@string/exit_app"
|
||
|
app:showAsAction="never" />
|
||
|
|
||
|
</menu>
|