我正在尝试创建一个简单的webview,并且每次启动都会获得FC。
这是我的MainActivity.java文件:
package com.jerdog.apps;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
WebView myWebView = (WebView) findViewById(R.layout.main);
myWebView.loadUrl("http://www.google.com");
}
}
这是我的res / layout / main.xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
从我在Eclipse中运行Eclipse中的catbin
开始,我包含了我的logcat答案 0 :(得分:2)
这一行:
WebView myWebView = (WebView) findViewById(R.layout.main);
不正确,myWebView
为空。因此,以下行抛出NullPointerException
将行更改为:
WebView myWebView = (WebView) findViewById(R.id.webview);
findViewById
会将您希望找到的View
的ID作为输入,但是您传递了布局。将此更改为WebView
文件中main.xml
元素的ID应该可以解决问题。如果您需要参考实现,则有tutorial。