[Solved] Pass value from View Holder

Then create a hashmap and whenever updation takes place save the data in hashmap. Inherit getItem(int index) method in adapter with HashMap as return type & and return the data in that method for corresponding index. HashMap<String, Object> hashMap = new HashMap<String, Object>(); @Override public HashMap getItem(int i) { return hashMap.get(i); } Like if user … Read more