我无法弄清楚为什么我的简单webview应用程序意外关闭的原因。即使Eclipse没有抛出任何错误。
以下是屏幕截图http://pbrd.co/YNWFVw
MainActivity.java :
package com.example.testwebview;
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) {
WebView webView1 = (WebView) findViewById(R.id.webView1);
webView1.loadUrl("http://www.google.com/m");
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@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;
}
}
activity_main.xml中:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>
testwebview Menifest :
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.testwebview.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>
答案 0 :(得分:5)
在设置内容视图后获取Web视图,即
WebView webView1 = (WebView) findViewById(R.id.webView1);
//这会返回null,因为您还没有设置contentView,所以当您尝试访问它时,它会抛出NullPointerException
所以在setContentView
之后获取webView引用
setContentView(R.layout.activity_main);
WebView webView1 = (WebView) findViewById(R.id.webView1);
修改强>
对于第二个查询,默认浏览器中的webview打开网址,请使用此代码
Webview默认使用浏览器打开网址,我们需要做这样的事情
webView1.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl("http://www.google.com/m");
return true;
}});
答案 1 :(得分:0)
在您执行任何其他操作之前,请始终呼叫超级生命周期回调,即您应在super.onCreate(savedInstanceState)
之前致电setContentView(...)
。
实际导致崩溃的原因很可能是NullPointerException。调用setContentView(...)
是实际创建视图的内容。如果您在此之前致电findViewById(...)
,它将返回null
,因为您的布局尚未充气。在Eclipse的DDMS中使用LogCat来获取堆栈跟踪,你会发现你在.loadUrl(...)
上调用了null
。
以下是您的onCreate方法应该是什么样的:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView webView1 = (WebView) findViewById(R.id.webView1);
webView1.loadUrl("http://www.google.com/m");
}
另一个注意事项:不要将fill_parent
用于您的高度和宽度 - 不推荐使用它。请改用match_parent
。