AndroidAnnotations运行时错误

时间:2013-12-17 09:53:38

标签: java android android-annotations

我在我的应用程序中使用AndroidAnnotations,当我尝试将额外的意图添加到intent并开始一个我使用AndroidAnnotations的活动时,我总是遇到运行时错误。当我停止使用AndroidAnnotations时,一切正常。

这是一个代码,它启动我的活动:

public class TimeAndDateShower extends Activity {
//some code

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.time_and_date_shower);
        //some code
        setButtonListener();

    }
public void setButtonListener()
    {
        Button button = (Button) findViewById(R.id.button1);
        button.setOnClickListener(new OnClickListener()
        {
          public void onClick(View v)
          {
              Intent intent = new Intent(TimeAndDateShower.this, DateChooser_.class);
              intent.putExtra("SSID", network);
              startActivity(intent);
              TimeAndDateShower.this.finish();
          }
        });
    }
}

以下是DateChooser.java的样子:

@EActivity(R.layout.date_chooser)
public class DateChooser extends Activity {

    public String network;

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.date_chooser);

        setNetworkName();
        //some code   
    }

    public void setNetworkName()
    {
        TextView textView = (TextView)findViewById(R.id.textView4);
        network = this.getIntent().getStringExtra("SSID");//using an extra
        textView.setText(network);
    }

}

在AndroidManifest.xml中,我声明了DateChooser活动,如下所示:

name="com.componentix.imwizard.DateChooser_" android:screenOrientation="landscape"> </activity>

这是我的运行时错误的日志:

12-17 11:51:32.267: E/AndroidRuntime(3234): FATAL EXCEPTION: main
12-17 11:51:32.267: E/AndroidRuntime(3234): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.componentix.imwizard/com.componentix.imwizard.DateChooser_}: java.lang.NullPointerException
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.ActivityThread.access$600(ActivityThread.java:130)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.os.Handler.dispatchMessage(Handler.java:99)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.os.Looper.loop(Looper.java:137)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.ActivityThread.main(ActivityThread.java:4745)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at java.lang.reflect.Method.invokeNative(Native Method)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at java.lang.reflect.Method.invoke(Method.java:511)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at dalvik.system.NativeStart.main(Native Method)
12-17 11:51:32.267: E/AndroidRuntime(3234): Caused by: java.lang.NullPointerException
12-17 11:51:32.267: E/AndroidRuntime(3234):     at com.componentix.imwizard.DateChooser.setNetworkName(DateChooser.java:30)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at com.componentix.imwizard.DateChooser.onCreate(DateChooser.java:22)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at com.componentix.imwizard.DateChooser_.onCreate(DateChooser_.java:24)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.Activity.performCreate(Activity.java:5008)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1079)
12-17 11:51:32.267: E/AndroidRuntime(3234):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2023)
12-17 11:51:32.267: E/AndroidRuntime(3234):     ... 11 more

1 个答案:

答案 0 :(得分:4)

我猜你的NPE在textView上,这很正常:布局注入是在原始oncreate()方法之后在生成的类中完成的。此外,你应该让AA注入额外的和观看。只需像这样更新您的课程:

@EActivity(R.layout.date_chooser)
public class DateChooser extends Activity {

    @Extra("SSID")
    String network;

    @ViewById(R.id.textView4)
    TextView textView;

    @AfterViews
    void init() {
        textView.setText(network);
        //some code   
    }

}

你应该仔细看看at the wiki

相关问题