I have stored some values to an ArrayList HashMap like so:
ArrayList<HashMap<String, String>> bookDetails = new ArrayList<HashMap<String, String>>();
HashMap<String, String> map = new HashMap<String, String>();
map.put("book_author", bookAuthor);
map.put("book_description", bookDescription);
bookDetails.add(map);
I simply want to be able to retreive the description value and have it displayed in a TextView, how would I go about doing so? Thanks in advance.