I have this code,
ArrayList<HashMap<String, String>> eventosList;
HashMap<String, String> contact = new HashMap<String, String>();
contact.put("id", id);
contact.put("name", name);
eventosList.add(contact);
Is it possible to transform this HashMap<String, String> contact
to HashMap<String, List<String>>() contact
? How can I do this? Thank you so much