I'm new to Android development and I have some trouble understanding how to handle plain old java objects / variables / containers in Android. They seem to be not longer available after finishing an AsyncTask or leaving an Activity.
For e.g.: Via AsyncTask I'm gettings some data, push it into an ArrayList from another class (works pretty fine - I can see the result on my mapview ;-)) and want to make it available for other classes/Activities.
How can I handle this / what is a good practice in Android for that matter?
Thank you in advance.