webview无法运行的基本应用程序 - FC启动时

时间:2011-01-23 21:54:12

标签: android webview

我正在尝试创建一个简单的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

http://pastebin.com/5trRw9Bd

1 个答案:

答案 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