gpt4 book ai didi

android - 为什么我的 WebView 不能正常工作,渲染错误?

转载 作者:行者123 更新时间:2023-11-29 21:08:22 25 4
gpt4 key购买 nike

我几乎要放弃了。我不知道我做错了什么,我的 HTML 代码没有呈现,我收到错误消息 webpage not found file:///....。我尝试根据 Problems loading html asset into webview 来做+ 这是我的代码:

主 java 类 MainActivity.java

package com.example.webviewvulnerability;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

private Button button;




public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final String URL="file:///home/m.sepczuk/Downloads/eclipse/workspace/WebViewVulnerability/assets/index.html";
final WebView webview = new WebView(this);
webview.getSettings().setJavaScriptEnabled(true);
webview.setWebViewClient(new WebViewClient());
webview.loadUrl(URL);

}

list 文件 list 文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.webviewvulnerability"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.webviewvulnerability.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

/assets 目录中的索引文件/assets/index.html

index
<!doctype html>
<html>
<head>
</head>
<body>
<center>
<div id="msg">It works!!!</div>
</center>
</body>
</html>

最佳答案

您向 WebView 提供了错误的 URL。网址应该是这样的:

wv.loadUrl("file:///android_asset/index.html");

关于android - 为什么我的 WebView 不能正常工作,渲染错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23760922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com