2016-09-21 21:15:34 +02:00
|
|
|
<?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">
|
2017-10-29 14:47:00 +01:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:icon="@drawable/ic_share_white_48px"
|
|
|
|
android:orderInCategory="300"
|
2018-09-04 19:16:51 +02:00
|
|
|
android:title="@string/share_dotdotdot"
|
2017-10-29 14:47:00 +01:00
|
|
|
app:showAsAction="never">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_share_screenshot"
|
2018-09-04 19:16:51 +02:00
|
|
|
android:title="@string/share_screenshot_of_webpage" />
|
2017-10-29 14:47:00 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_take_screenshot"
|
2018-09-04 19:16:51 +02:00
|
|
|
android:title="@string/take_screenshot_of_webpage" />
|
2018-04-08 17:52:04 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_share_pdf"
|
|
|
|
android:title="@string/pdf"
|
|
|
|
android:visible="false" />
|
2017-10-29 14:47:00 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_share_link"
|
2018-09-04 19:16:51 +02:00
|
|
|
android:title="@string/share_link_as_text" />
|
2018-04-08 17:52:04 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_share_link_to_clipboard"
|
2018-09-04 19:16:51 +02:00
|
|
|
android:title="@string/copy_link_adress_to_clipboard" />
|
2018-04-08 17:52:04 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_create_launcher_shortcut"
|
|
|
|
android:title="@string/launcher_shortcut" />
|
2017-10-29 14:47:00 +01:00
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_go_to_top"
|
|
|
|
android:icon="@drawable/ic_arrow_upward_white_48px"
|
|
|
|
android:orderInCategory="400"
|
2018-09-04 19:16:51 +02:00
|
|
|
android:title="@string/go_to_top"
|
2017-10-29 14:47:00 +01:00
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2016-09-21 21:15:34 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_reload"
|
|
|
|
android:icon="@drawable/ic_refresh_white_48px"
|
|
|
|
android:orderInCategory="1000"
|
2016-10-26 16:23:14 +02:00
|
|
|
android:title="@string/reload"
|
2017-10-29 14:47:00 +01:00
|
|
|
app:showAsAction="never" />
|
2016-09-21 21:15:34 +02:00
|
|
|
</menu>
|