2020-01-10 22:22:12 -05: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">
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_web_back"
|
2020-03-14 16:04:14 -04:00
|
|
|
android:icon="@drawable/ic_arrow_back_24dp"
|
2020-01-10 22:22:12 -05:00
|
|
|
android:title="@string/action_webview_back"
|
2020-03-14 16:04:14 -04:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-01-10 22:22:12 -05:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_web_forward"
|
2020-03-14 16:04:14 -04:00
|
|
|
android:icon="@drawable/ic_arrow_forward_24dp"
|
2020-01-10 22:22:12 -05:00
|
|
|
android:title="@string/action_webview_forward"
|
2020-03-14 16:04:14 -04:00
|
|
|
app:iconTint="?attr/colorOnPrimary"
|
2020-01-10 22:22:12 -05:00
|
|
|
app:showAsAction="ifRoom" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_web_refresh"
|
|
|
|
android:title="@string/action_webview_refresh"
|
2020-01-16 21:43:10 -05:00
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_web_share"
|
|
|
|
android:title="@string/action_share"
|
|
|
|
app:showAsAction="never" />
|
2020-01-10 22:22:12 -05:00
|
|
|
|
2020-01-16 22:13:34 -05:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_web_browser"
|
|
|
|
android:title="@string/action_open_in_browser"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2020-01-10 22:22:12 -05:00
|
|
|
</menu>
|