Piyush
Piyush

Reputation: 3071

How to iterate Arraylist<HashMap<String,String>>?

I have an ArrayList object like this:

ArrayList<HashMap<String, String>> data = new ArrayList<HashMap<String, String>>();

How to iterate through the list? I want to display the value in a TextView which comes from the data of ArrayList object.

Upvotes: 7

Views: 19368

Answers (2)

dacwe
dacwe

Reputation: 43504

Simplest is to iterate over all the HashMaps in the ArrayList and then iterate over all the keys in the Map:

TextView view = (TextView) view.findViewById(R.id.view);

for (HashMap<String, String> map : data)
     for (Entry<String, String> entry : map.entrySet())
         view.append(entry.getKey() + " => " + entry.getValue());

Upvotes: 22

DallinDyer
DallinDyer

Reputation: 1408

for(HashMap<String, String> map : data){ ... deal with map... }

Upvotes: 2

Related Questions