欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

把网页放到安卓app中

程序员文章站 2022-06-28 18:22:30
...

创建空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")
    

我的 应用
把网页放到安卓app中

方法二 手动修改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")