how to get Hash table Arraylist to other intent?
I have hashtbles in array list. List<Hashtable<String, String>> info = new ArrayList<Hashtable<String, String>>(); Hashtable<String, String> hm = new Hashtable<String, String>(); // Put elements to the map hm.put("Read_Flag", s1); hm.put("sms_received_id", s2); hm.put("Sender_Id", s3); hm.put("Sender_Name", s4); hm.put("Patient_Name", s5); hm.put("Received_Date", s6); hm.put("Received_Text", s7); hm.put("Received_Text_Full", s8); hm.put("AttachmentFlag", s9); // Get a set of the entries Set<?> set = hm.entrySet(); // Get an iterator Iterator<?> it = set.iterator(); // Display elements while(it