android-如何从arraylist中删除重复的联系人

android-如何从arraylist中删除重复的联系人,第1张

概述我创建了一个应用程序,可以在其中从设备获取联系人.但是我想从结果中删除重复的联系人.我该怎么办?主要活动publicclassMainActivityextendsActivityimplementsOnItemClickListener{EditTextsearchText;ArrayList<String>phno0=newArrayList<String>();List<S

我创建了一个应用程序,可以在其中从设备获取联系人.
但是我想从结果中删除重复的联系人.

我该怎么办?

主要活动

public class MainActivity extends Activity implements OnItemClickListener {EditText searchText;ArrayList<String> phno0 = new ArrayList<String>();List<String> arrayListnames;public List<ProfileBean> List;public SearchableAdapter adapter;//ProfileBean bean;String[] cellArray = null;String contacts;ListVIEw lv;String phoneNumber, name;@OverrIDeprotected voID onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    Actionbar actionbar = getActionbar();    lv = (ListVIEw) findVIEwByID(R.ID.ListvIEw);    List = new ArrayList<ProfileBean>();    getAllCallLogs(this.getContentResolver());    adapter = new SearchableAdapter(getApplication(), List);    lv.setAdapter(adapter);    lv.setItemsCanFocus(false);    lv.setonItemClickListener(this);    lv.setTextFilterEnabled(true);}@OverrIDeprotected voID onStart() {    // Todo auto-generated method stub    super.onStart();}public voID getAllCallLogs(ContentResolver cr) {    Cursor phones = cr.query(            ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null,            null, ContactsContract.CommonDataKinds.Phone.disPLAY_name                    + " ASC");    while (phones.movetoNext()) {        phoneNumber = phones                .getString(phones                        .getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));        name = phones                .getString(phones                        .getColumnIndex(ContactsContract.CommonDataKinds.Phone.disPLAY_name));        List.add(new ProfileBean(name, phoneNumber));    }    phones.close();}}

解决方法:

在List.add(new ProfileBean(name,phoneNumber));的位置添加以下检查.加入清单之前:

int flag = 0if(List.size() == 0){List.add(new ProfileBean(name, phoneNumber));}    for(int i=0;i<List.size();i++){    if(!List.get(i).getProfilename().trim().equals(name)){    flag = 1;    }else{     flag =0;     break;

}

    }if(flag == 1){List.add(new ProfileBean(name, phoneNumber));}
总结

以上是内存溢出为你收集整理的android-如何从arraylist中删除重复的联系人全部内容,希望文章能够帮你解决android-如何从arraylist中删除重复的联系人所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1095417.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存