24 lines
782 B
XML
24 lines
782 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/action_web_back"
|
||
|
android:icon="@drawable/ic_arrow_back_white_24dp"
|
||
|
android:title="@string/action_webview_back"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_web_forward"
|
||
|
android:icon="@drawable/ic_arrow_forward_white_24dp"
|
||
|
android:title="@string/action_webview_forward"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_web_refresh"
|
||
|
android:icon="@drawable/ic_refresh_white_24dp"
|
||
|
android:title="@string/action_webview_refresh"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
|
||
|
</menu>
|