gpt4 book ai didi

java - 为什么我在 android 中使用 webview 时出现错误?

转载 作者:行者123 更新时间:2023-11-29 06:35:06 24 4
gpt4 key购买 nike

我是 android 的新手,已经编写了 web View 的代码来显示给定的 url。

错误如下

enter image description here

为什么我会收到这个错误我在我的问题中使用了正确的逻辑并且我没有收到任何错误

请让我知道如何纠正它?

使用的代码是:

package com.coded.sandeep;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class MainActivity extends Activity {
@SuppressLint("SetJavaScriptEnabled")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

WebView webView = (WebView) findViewById(R.id.webview);
WebSettings settings = webView.getSettings();
settings.setJavaScriptEnabled(true);
webView.loadUrl("http://www.google.com");
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}}

任何人都可以调试还是互联网连接错误?

最佳答案

您的项目中有一个androidmanifest.xml 文件。只需打开该文件并写入以下行 init。

<uses-permission android:name="android.permission.INTERNET" />

You need to write this line after <uses-sdk tag and before <application> tag.

见下图,

enter image description here

关于java - 为什么我在 android 中使用 webview 时出现错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22478223/

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