Sanat Pandey
Sanat Pandey

Reputation: 4103

Append new Arraylist in arrayadapter

I have a problem that I want to append or add a new arraylist in an arrayadapter which is already running. Means I want to retain its previous list and want to add more items through an another arraylist. How it will possible? Means suggest me the right solution for this problem.

Thanks in advance.

Upvotes: 0

Views: 612

Answers (2)

Nikolay Elenkov
Nikolay Elenkov

Reputation: 52936

The docs usually help. Just add them.

Upvotes: 0

Im0rtality
Im0rtality

Reputation: 3533

ArrayList.addAll();

Upvotes: 1

Related Questions