mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
8d9c02dd7a
* 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>
13 lines
466 B
XML
13 lines
466 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<WebView android:id="@+id/webview"
|
|
android:layout_width="match_parent" android:layout_height="match_parent"/>
|
|
|
|
</LinearLayout>
|