Sending an object through Serializable crashes

604 Views Asked by At

I have the following method which is called in onCreate() in my second activity.

It gets an object from the first activity through Serializable and creates a list based on it, changes the object and sends it back to the first activity.

This works fine, but if I send back to the first activity the unchanged object it crashes when trying to create the list in the second activity.

private void createLectureListView() {

    ListView lecListView = (ListView) findViewById(R.id.lectureListView);

    Intent i = getIntent();
    mod = (Module)i.getSerializableExtra("moduleObject");

    lectureList = new ArrayList<Lecture>();

    if (mod.lectureArrayList!=null) lectureList=mod.lectureArrayList;

    listAdapter = new ArrayAdapter<Lecture>(this,android.R.layout.simple_list_item_1, lectureList);

    lecListView.setAdapter(listAdapter);
}

This is the exception:

Caused by: java.lang.NullPointerException

[EDIT] Also added the other bits. This is the one in Activity1:

private void registerClickCallback() {
    ListView listView1 = (ListView) findViewById(R.id.listView1);
    listView1.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            Intent myIntent = new Intent(MenuActivity.this, LectureNotes.class);
            //pass the module object we are selecting
            myIntent.putExtra("moduleObject",modulesInfo.get(position));
            pos = position;

            startActivityForResult(myIntent,1);
        }
    });
}

The onActivityResult method in the first ACtivity.

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == 1) {
        if(resultCode == RESULT_OK){
            mod = (Module)data.getSerializableExtra("moduleObject");
            if (mod!=modulesInfo.get(pos))
                modulesInfo.set(pos,mod);
        }
    }
}

[EDIT2] The stack trace

12-12 08:56:37.041    4143-4143/com.example.learnorizeapp E/AndroidRuntime﹕ FATAL EXCEPTION: main
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.learnorizeapp/com.example.learnorizeapp.LectureNotes}: java.lang.NullPointerException
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
            at android.app.ActivityThread.access$600(ActivityThread.java:141)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5041)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
            at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.NullPointerException
            at com.example.learnorizeapp.LectureNotes.createLectureListView(LectureNotes.java:59)
            at com.example.learnorizeapp.LectureNotes.onCreate(LectureNotes.java:28)
            at android.app.Activity.performCreate(Activity.java:5104)
            at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
            at android.app.ActivityThread.access$600(ActivityThread.java:141)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
            at android.os.Handler.dispatchMessage(Handler.java:99)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:5041)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
            at dalvik.system.NativeStart.main(Native Method)
12-12 08:56:37.057      459-709/system_process W/ActivityManager﹕ Force finishing activity com.example.learnorizeapp/.LectureNotes
12-12 08:56:37.057      459-709/system_process W/ActivityManager﹕ Force finishing activity com.example.learnorizeapp/.MenuActivity
1

There are 1 best solutions below

0
On

There was a problem with lectureList It was returning null when doing some different scenarios like clicking on a button but not clicking on the other.