开发者

Passing ArrayList with objects to new Activity?

I'm trying to pass an ArrayList from my first Activity to the next one. Basically, the first activity parses an XML file and creates an ArrayList with objects inside. What I want to do is send that ArrayList to my second activity and show some of the object data in a ListView.

I thought of doing this with an intent, but it looks like only primitive datatypes are usually passed through intents. Is this right?

If so, what would be a better solution to pass the data? Certainly Android must provide something to be able to do this kind of thing.

Any help/code examples are really appreciated..

Thanks

EDIT:

I solved this by first creating and calling the intent, and only parsing the XML in th开发者_JS百科e Activity that I called. This way I didn't need to pass the objects anymore. But for those interested, you can read about how to pass data through activities, here.


Complex types may be passed by means of Parcelable. An example is in this question:

Help with passing ArrayList and parcelable Activity


I would do a toString on the array and pass it as an extra by doing a intent.putExtra("label". array.toString()); and then just recover it in the new activity.


You can pass a String List using putStringArrayListExtra(String name, ArrayList<String> value) if it is strings. Or, you could serialize List and then use putExtra(String name, Serializable value).

If you don't want to/can't use the above, you could use a central util class with a static reference to the List. Just set it in your first Activity and get it in the second.


This could be totally bad practice and I wouldn't know any better, but you could declare the ArrayList as public and static. Then just access it with Activity.ArraylistName.


You can set the scope of ArrayList at application level or you can do this using parcelable.


I made this trick to send from first Activity to second.

The first activity

ArrayList<String> mylist = new ArrayList<String>();  
Intent intent = new Intent(ActivityName.this, Second.class);
intent.putStringArrayListExtra("key", mylist);
startActivity(intent);

The second activity

To retrieve

ArrayList<String> list =  getIntent().getStringArrayListExtra("key");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜