创建空app 展示网页
首先配置权限
在 app/src/main/AndroidManifest.xml 添加网络权限
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.countrymanage"> <?- 网络权限-?> <uses-permission android:name="android.permission.INTERNET" /> 省略。。。
启用javascript
val myWebView = WebView(this) myWebView.settings.javaScriptEnabled = true setContentView(myWebView)
方法一 直接代码修改
//官方示例中的 activityContext 就是上下文 this //val myWebView = WebView(activityContext) val myWebView = WebView(this) setContentView(myWebView) myWebView.loadUrl("http://www.baidu.com")
我的 应用
方法二 手动修改xml 较为麻烦
替换xml
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <WebView android:id="@+id/webview" android:layout_width="match_parent" android:layout_height="match_parent" /> </androidx.constraintlayout.widget.ConstraintLayout>
加载页面
val myWebView: WebView = findViewById(R.id.webview) myWebView.loadUrl("http://www.example.com")