I\'m getting same contact three or two times in my app this happening with some contacts not with every contacts. In my app everything is working as expected but when clicking o
Get rid of
while (cur != null && cur.moveToNext()) {
Change it to
if(cur.moveToFirst()){ list.clear();