I have a problem with a program that I `m design:
public void LoadVehicules()
{
Intent intent=new Intent(this,pspsl.g.listviewrealtimeinfo.class);
intent.putExtra("doGetInfoRealTimeResult", doGetInfoRealTimeResult.toString());
intent.putExtra("doGetInfoRealTimeResult", true);
startActivity(intent);
}
doGetinfoRealTimeResult type is Array of Objects and I want to pass this array list to another window of the program to put the information that it contain in the screen.
My problem is, How Can I serializable an array list of objects??
Thanks.