Files
arcanechat-android/res/menu/web_view.xml
T
bjoern 8d9c02dd7a add option to view full (html) message (#1763)
* add get-mime-original apis

* remove unused control

* add 'Show full message' buttons

* split reusable WebViewActivity from LocalHelpActivity

* add FullMsgActivity

* load html via AsyncTask

* adapt to changed api

* handle mailto:-links in WebView

* block loading remote images by default, add user setting always/once/never

* do not hide 'Once' button in always-mode, playing around a day with hidden 'Once' that looks more like a bug :)

* wording: as 'Always' affects all messages, it is better to speak of multiple senders

* wording: use 'Load remote images'

this makes it easier for the user to find the option
if one sees, images are missing in the document.

* wording: shorten text.

* wording: change 'may' to 'can'. 'may' sounds a bit as if someone allows this.

* Don't use AsyncTask

* check 'once' if appropriate

* use lite-colored checkbox-emoji in dark-theme

* add comment about missing error logging

Co-authored-by: Hocuri <hocuri@gmx.de>
2021-01-28 22:53:15 +01:00

28 lines
917 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:title="@string/search"
android:id="@+id/menu_search_web_view"
app:actionViewClass="androidx.appcompat.widget.SearchView"
app:showAsAction="collapseActionView|never" />
<item android:title="0/0"
android:id="@+id/menu_search_counter"
android:visible="false"
app:showAsAction="always"/>
<item android:title="@string/back"
android:id="@+id/menu_search_up"
android:icon="@drawable/ic_search_up"
android:visible="false"
app:showAsAction="always"/>
<item android:title="@string/next"
android:id="@+id/menu_search_down"
android:icon="@drawable/ic_search_down"
android:visible="false"
app:showAsAction="always"/>
</menu>