I have this application with 2 classes, in the first class I define a list array wich I want to access in my second class, how do I do that? class one (with the array extends listActivity and the other class extends Activity). I don’t think it’s nessecary to post my code as I believe there is a quick solution to this I just don’t know it. Allthough I can post it if you can’t help me without seeing the actual code.
I have this application with 2 classes, in the first class I define a
Share
you can pass
ArrayList<String>‘s across activities using intentExtras.In Activity2
this will work if you dont want to use parcelable