gpt4 book ai didi

android - ner::ERR_CACHE_MISS Android 4.4 WebView

转载 作者:行者123 更新时间:2023-11-30 02:10:51 35 4
gpt4 key购买 nike

我正在尝试制作一个简单的网络应用程序,将网站加载到 WebView 中。

这是代码:

public class Webviewser extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_webview);

String url = "http://google.com";
WebView view = (WebView)this.findViewById(R.id.webView);
view.getSettings().setJavaScriptEnabled(true);
view.loadUrl(url);
}
}

我在其他线程中读到解决方案是在 ANDROID MANIFEST 中添加 INTERNET 权限。但如您所见,我已经添加了它:

<?xml version="1.0" encoding="utf-8"?>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Webviewser"
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>

</manifest>

最佳答案

试着用这个来解释代码:

WebView view = (WebView) findViewById(R.id.webView);
WebSettings faller = view.getSettings();
faller.setJavaScriptEnabled(true);
view.loadUrl("http://google.com");
view.setWebViewClient(new WebViewClient());

关于android - ner::ERR_CACHE_MISS Android 4.4 WebView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30111673/

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