I am modifying someone else code.
I have a variable of type List<HashMap<String, String>>
List<HashMap<String, String>> lst
I tried to use get the item single value by using
lst[0,1]
lst[0][1]
lst.get(0)[1]
lst.get(0)(1)
lst.get(0)("ID")
but non works.
how to get a single item value?
List<HashMap<String, String>> lst = null;
try{
lst = myXmlParser.detparse(reader);
}catch(Exception e){
Log.d("Exception", e.toString());
}