Showing some contacts multiple times in my App from phone book

前端 未结 2 1785
生来不讨喜
生来不讨喜 2021-01-28 05:33

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

2条回答
  •  时光说笑
    2021-01-28 06:28

    Get rid of

    while (cur != null && cur.moveToNext()) { 
    

    Change it to

    if(cur.moveToFirst()){
    list.clear();
    

提交回复
热议问题