mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-17 12:19:16 +01:00
d352405ba6
* Add very basic "Add to homescreen" action in manga info fragment. * Fix open from homescreen opening current manga (if a manga is open). Code cleanup. * Improve fix for "Opening from homescreen opens currently open manga if a manga is currently open" and fix "Going back to the main app via a Manga opened through a shortcut repeats the launcher open animation". * Implement custom icons, add star icon and optimize some things. * Remove Tachiyomi and custom image icon types. * Move icon creation task into an observable. Added some extra error handling.
19 lines
644 B
XML
19 lines
644 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_share"
|
|
android:icon="@drawable/ic_share_white_24dp"
|
|
android:title="@string/action_share"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item android:id="@+id/action_open_in_browser"
|
|
android:title="@string/action_open_in_browser"
|
|
app:showAsAction="never"/>
|
|
|
|
<item android:id="@+id/action_add_to_home_screen"
|
|
android:title="@string/action_add_to_home_screen"
|
|
app:showAsAction="never"/>
|
|
|
|
</menu> |