我是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>
我不确定我做错了什么。代码运行没有错误。我只是得到一个空白的屏幕。任何帮助深表感谢。提前谢谢。
答案 0 :(得分:1)
尝试将myWebView.getSettings().setJavaScriptEnabled(true);
//启用javascript
myWebView.loadUrl("http://www.google.com");
答案 1 :(得分:0)
查看此working basic webview。我和你的“www.google.com”一样进行了测试,并得出了一个空白视图。我使用了“http://www.google.com”并且运行正常。尝试一下你的吗?但也可以随意窃取示例代码。
答案 2 :(得分:0)
重新启动你的应用程序(我的意思是再次点击Run)并确保你已经启用了上面提到的javaScript。