I was able get the value of "quantity" in my list when I use on click using this code:
public void onItemClick(AdapterView parent, View view, int position, long id)
{Object o = list.get(position); HashMap<?, ?> fullObject = (HashMap<?, ?>)o; String a = (String) fullObject.get("quantity");
}
now I want to change the value of "quantity" then update it in my list. any help? thanks a lot