2018-08-03 10:32:17 +00:00
|
|
|
package eu.faircode.email;
|
|
|
|
|
|
|
|
|
|
/*
|
2018-08-14 05:53:24 +00:00
|
|
|
This file is part of FairEmail.
|
2018-08-03 10:32:17 +00:00
|
|
|
|
2018-08-14 05:53:24 +00:00
|
|
|
FairEmail is free software: you can redistribute it and/or modify
|
2018-08-03 10:32:17 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
NetGuard is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with NetGuard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
Copyright 2018 by Marcel Bokhorst (M66B)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
|
import android.view.View;
|
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
import android.webkit.WebChromeClient;
|
|
|
|
|
import android.webkit.WebSettings;
|
|
|
|
|
import android.webkit.WebView;
|
|
|
|
|
import android.webkit.WebViewClient;
|
|
|
|
|
import android.widget.ProgressBar;
|
|
|
|
|
|
2018-08-08 06:55:47 +00:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
|
|
2018-08-03 10:32:17 +00:00
|
|
|
// https://developer.android.com/reference/android/webkit/WebView
|
|
|
|
|
|
2018-08-05 12:09:46 +00:00
|
|
|
public class FragmentWebView extends FragmentEx {
|
2018-08-03 10:32:17 +00:00
|
|
|
@Override
|
|
|
|
|
@Nullable
|
|
|
|
|
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
|
|
View view = inflater.inflate(R.layout.fragment_webview, container, false);
|
|
|
|
|
|
|
|
|
|
final ProgressBar progressBar = view.findViewById(R.id.progressbar);
|
2018-09-04 11:26:18 +00:00
|
|
|
final WebView webview = view.findViewById(R.id.webview);
|
2018-08-03 10:32:17 +00:00
|
|
|
|
|
|
|
|
progressBar.setProgress(0);
|
|
|
|
|
progressBar.setVisibility(View.VISIBLE);
|
|
|
|
|
|
|
|
|
|
WebSettings settings = webview.getSettings();
|
|
|
|
|
settings.setJavaScriptEnabled(true);
|
2018-08-27 10:00:56 +00:00
|
|
|
settings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
|
2018-08-03 10:32:17 +00:00
|
|
|
|
|
|
|
|
webview.setWebViewClient(new WebViewClient() {
|
|
|
|
|
public boolean shouldOverrideUrlLoading(WebView view, String url) {
|
|
|
|
|
view.loadUrl(url);
|
2018-08-05 12:09:46 +00:00
|
|
|
setSubtitle(url);
|
2018-08-03 10:32:17 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
webview.setWebChromeClient(new WebChromeClient() {
|
|
|
|
|
public void onProgressChanged(WebView view, int progress) {
|
|
|
|
|
progressBar.setProgress(progress);
|
|
|
|
|
if (progress == 100)
|
|
|
|
|
progressBar.setVisibility(View.GONE);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2018-08-05 16:14:43 +00:00
|
|
|
Bundle args = getArguments();
|
2018-09-04 11:26:18 +00:00
|
|
|
if (args.containsKey("url")) {
|
|
|
|
|
String url = args.getString("url");
|
|
|
|
|
webview.loadUrl(url);
|
|
|
|
|
setSubtitle(url);
|
|
|
|
|
} else if (args.containsKey("html")) {
|
|
|
|
|
String html = args.getString("html");
|
|
|
|
|
String from = args.getString("from");
|
|
|
|
|
webview.loadDataWithBaseURL("email://", html, "text/html", "UTF-8", null);
|
|
|
|
|
setSubtitle(from);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
((ActivityBase) getActivity()).addBackPressedListener(new ActivityBase.IBackPressedListener() {
|
|
|
|
|
@Override
|
|
|
|
|
public boolean onBackPressed() {
|
|
|
|
|
boolean can = webview.canGoBack();
|
|
|
|
|
if (can)
|
|
|
|
|
webview.goBack();
|
|
|
|
|
|
|
|
|
|
Bundle args = getArguments();
|
|
|
|
|
if (args.containsKey("from") && !webview.canGoBack())
|
|
|
|
|
setSubtitle(args.getString("from"));
|
|
|
|
|
|
|
|
|
|
return can;
|
|
|
|
|
}
|
|
|
|
|
});
|
2018-08-03 10:32:17 +00:00
|
|
|
|
|
|
|
|
return view;
|
|
|
|
|
}
|
|
|
|
|
}
|