mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2025-01-07 04:57:41 +03:00
797553ce16
Based on 65804ebb3a
23 lines
782 B
XML
23 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>
|