我是android的新手,并编写了Web视图的代码来显示给定的url。
错误如下
为什么我收到此错误我在我的问题中使用了正确的逻辑,我没有任何错误
亲切的,请让我知道如何纠正它?
使用的代码是:
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;
}}
任何人都可以调试或者是互联网连接错误吗?
答案 0 :(得分:4)
项目中有一个androidmanifest.xml文件。只需打开该文件并编写以下行init。
<uses-permission android:name="android.permission.INTERNET" />
You need to write this line after <uses-sdk tag and before <application> tag.
见下图,
答案 1 :(得分:2)
将以下权限添加到您的manifest.xml
文件
<uses-permission android:name="android.permission.INTERNET" />
并确保您的Internet Data Connection Turn ON
答案 2 :(得分:1)
将INTERNET权限添加到清单文件中。
You have to add this line:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
outside the application tag in your AndroidManifest.xml