新手Android NullPointerException麻烦射击

时间:2011-12-27 17:39:10

标签: java android exception

我和这里的人有类似的问题:Android activity error我已经阅读了这篇文章。我也读过其他帖子。但我似乎无法让我的Android应用程序运行。

描述:我有一个按钮。我想要这个按钮工作。由于OnClickListener,我不断获得NPE。这实际上是与上述帖子相同的问题,但我的表现略有不同。请帮我。非常感谢你。

Main.java

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;


public class Main extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button b = (Button) findViewById(R.id.button1);
        b.setOnClickListener(new OnClickListener() {

            public void onClick(View v) {
            startActivity(new Intent(Main.this, Second.class));
            }
        });
    }
}

Second.java

import android.app.Activity;
import android.os.Bundle;

public class Second extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    }
}    

错误消息

12-27 09:19:10.729: W/dalvikvm(923): threadid=1: thread exiting with uncaught exception (group=0x409951f8)
12-27 09:19:10.749: E/AndroidRuntime(923): FATAL EXCEPTION: main
12-27 09:19:10.749: E/AndroidRuntime(923): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.harryoh.firstapp/com.harryoh.firstapp.Main}: java.lang.NullPointerException
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1955)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1980)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.ActivityThread.access$600(ActivityThread.java:122)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1146)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.os.Handler.dispatchMessage(Handler.java:99)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.os.Looper.loop(Looper.java:137)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.ActivityThread.main(ActivityThread.java:4340)
12-27 09:19:10.749: E/AndroidRuntime(923):  at java.lang.reflect.Method.invokeNative(Native Method)
12-27 09:19:10.749: E/AndroidRuntime(923):  at java.lang.reflect.Method.invoke(Method.java:511)
12-27 09:19:10.749: E/AndroidRuntime(923):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
12-27 09:19:10.749: E/AndroidRuntime(923):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
12-27 09:19:10.749: E/AndroidRuntime(923):  at dalvik.system.NativeStart.main(Native Method)
12-27 09:19:10.749: E/AndroidRuntime(923): Caused by: java.lang.NullPointerException
12-27 09:19:10.749: E/AndroidRuntime(923):  at com.harryoh.firstapp.Main.onCreate(Main.java:19)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.Activity.performCreate(Activity.java:4465)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
12-27 09:19:10.749: E/AndroidRuntime(923):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1919)
12-27 09:19:10.749: E/AndroidRuntime(923):  ... 11 more

我非常感谢你的帮助。我真的很想学习Android,而这些麻烦射击问题总是引起很多痛苦。

编辑:谢谢你的帮助。一旦我能够,我会回报这个社区的恩惠......我还没有完成你的意见,因为我想按要求提供这个。我现在会继续努力。我希望它有效。

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" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

</LinearLayout>

6 个答案:

答案 0 :(得分:3)

在乱糟糟的布局时,这种情况多次发生在我身上。如果您刚刚添加了按钮,请尝试刷新项目并清理重建,然后查看它是否选中了按钮。出于某种原因,如果您添加小部件并尝试在它实际不更新后立即测试它们。

编辑:看到你的main.xml之后,看起来你甚至没有设置按钮。这会导致空指针异常,因为它寻找不存在的东西。

答案 1 :(得分:1)

import android.app.Activity;
import android.os.Bundle;

public class Second extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
``` setContentView(R.layout.second);
    }
}

prove this, create new xml with name second and add setContentView(R.layout.second) in the class Second 

答案 2 :(得分:0)

首先,检查您是否在清单文件中包含了第二个活动。其次,没有与第二个活动相关的布局。尝试添加第二个onCreate()setContentView(R.layout.main);

答案 3 :(得分:0)

您是否在Android清单中声明了第二个活动?

 <activity
        android:label="@string/app_name"
        android:name=".Second" >
  </activity>

另外,您应该为第二个活动添加布局。一定要在第二个活动的onCreate()中添加一个setContentView(R.layout.second)

现在你提供了你的xml,注意你那里没有button1,你需要在调用 findViewById()之前声明那里的按钮。

检查完上述内容后,尝试在线性布局中的xml中添加一个按钮

<Button android:id="@+id/button1"     
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

答案 4 :(得分:0)

我猜您没有在setContentView()活动上致电Second

答案 5 :(得分:0)

不是在代码中设置OnClick事件,为什么不在xml中设置它。

      <Button style="@style/WrapContent"
        android:onClick="buttonClicked"
        android:textSize="16dp"
        android:textStyle="bold"
        android:text="@string/button_text" />

然后只需将以下方法添加到您的活动中:

public void buttonClicked(View v) {

    // Handle Click Event
    startActivity(new Intent(this, Second.class) );

}

传入的视图将是按钮的实例