Webview相当于一个小型的浏览器,如果在app内实现内置浏览器,效果一定非常酷炫。 我本身有个网站域名,想在APP内直接访问显示,然而不成功。 原因是Webview会自动拦截非https/http的url,于是把网页源代码放到本地,不仅速度快,效果也很不戳。 话不多说,放上代码 xml
代码语言:javascript复制<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".paper">
<WebView
android:id="@ id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
java
代码语言:javascript复制import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView;
public class paper extends Fragment {
private WebView webView;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_paper, container, false);
webView = view.findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("file:///android_asset/index.html");//加载url
return view;
}
}
至于如何一步步实现,这篇文章讲得非常详细,可以去看