android - How to send List instance to another activity? -


i have class :

public class classlist  {        private string language1;     private string language2;     public classlist(string language1,string language2)     {         this.language1 = language1;         this.language2 = language2;     }     public string language1()      {         return this.language1;     }     public string language2()     {         return this.language2;     }  } 

i send arraylist activity using instance of class. possible?

i send arraylist activity instance using. possible?

assuming mean, sending classlist activity using intent, have @ parcelable interface:

here's nice example of how it


Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -