Android Realm - Passing Realm object using Intent

后端 未结 3 1132
走了就别回头了
走了就别回头了 2021-01-11 14:59

I want to pass a realm object from one activity to another. e.g.

Intent intent = new Intent(MainActivity.this, Second.class);
intent.putExtra(\"Student\", s         


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-11 15:38

    Your ROW object is null on which you are calling getLinkList(long).

    Check whether ROW is serialized or not ? Probably it's not.

提交回复
热议问题