Android Realm - Passing Realm object using Intent

后端 未结 3 1130
走了就别回头了
走了就别回头了 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:47

    Realm currently doesn't support parsing RealmObjects across Intents natively. So you have 2 options :

    1. Send some identifier instead and requery for the object on the other side.

    2. Use a 3rd party library like Parceler. You can see how here: https://realm.io/docs/java/latest/#parceler

提交回复
热议问题