+ HashMap<String, String> map = null;
+ try {
+ map = (HashMap<String, String>) getListAdapter().getItem(index);
+ } catch (ClassCastException e) {
+ Log.wtf(TAG, "getitem(index) from list adapter did not return hashmap, bailing out");
+ return false;
+ }
+