Thursday, 22 August 2013

Not able to use Date filed in Parcelable class in android

Not able to use Date filed in Parcelable class in android

I am working in an android project and I want to pass a List of object
from once activity to another activity . In the object there are Date
fields too.. I have implemented my class with Parcelable to pass my List
of Object from one activity and I am not not to parse my Date field. So
please suggest me a solution.
This is the class I want to pass
public class Consumer {
public int BusClientLogID;
public int ClientID;
public String ClientName;
public int ClientStatus;
public int Client_GroupStatus;
public String EmployeeName;
public String ServiceCompletedCount;
public Date SignInTime;
public Date TimeArrive;
public Date TimeDepart;
public Date SignOutTime;
}

No comments:

Post a Comment