gpt4 book ai didi

java - 尝试在应用程序中加载 url 时出现黑屏

转载 作者:行者123 更新时间:2023-11-30 03:01:46 25 4
gpt4 key购买 nike

我是 eclipse/Java 的新手。我搜索了答案,但没有解决我的问题。我希望有人能指导我。我正在尝试使用 Android 应用程序启动网页,但我在 Android 虚拟仿真中看到一个空白页面。

这是我的代码

package com.example.t4;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.webkit.WebView;

public class MainActivity extends Activity {

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

WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.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

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

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />

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

</manifest>

这里是 activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

</LinearLayout>

我不确定我做错了什么。代码运行没有错误。我只是得到一个空白屏幕。任何帮助深表感谢。提前致谢。

最佳答案

尝试放置 myWebView.getSettings().setJavaScriptEnabled(true);//启用 javascript

myWebView.loadUrl("http://www.google.com");

关于java - 尝试在应用程序中加载 url 时出现黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22407742/

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