mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-16 15:32:50 +01:00
37b7efbc87
* backup * doing logic * cleanup * applying suggestion Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com> * requested changes Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
27 lines
902 B
XML
27 lines
902 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_bookmark"
|
|
android:icon="@drawable/ic_bookmark_border_24dp"
|
|
android:title="@string/action_bookmark"
|
|
app:iconTint="?attr/colorOnSurface"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_remove_bookmark"
|
|
android:icon="@drawable/ic_bookmark_24dp"
|
|
android:title="@string/action_remove_bookmark"
|
|
app:iconTint="?attr/colorOnSurface"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_open_in_web_view"
|
|
android:icon="@drawable/ic_webview_24dp"
|
|
android:title="@string/action_open_in_web_view"
|
|
app:iconTint="?attr/colorOnSurface"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
</menu>
|