Transferring object data from one activity to another activity

前端 未结 5 1245
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-07 08:30

I am having a class EmployeeInfo as the following:

 public class EmployeeInfo {
        private int id; // Employee ID
        private String name; // Employ         


        
5条回答
  •  一整个雨季
    2021-01-07 08:44

    You can convert your object to jsonstring using Gson or Jakson and pass using intent as string and read the json in another activity.

提交回复
热议问题