Loop没有捕获重复项并在Android(Java)

时间:2015-12-16 00:16:15

标签: java android loops arraylist duplicates

我最近开始使用Android和Java编程,所以请耐心等待。

我写了一个循环,在将新名称和电话号码添加到列表和隐藏数组之前,应该删除它之前找到的任何重复项。使用当前的方法,我仍然可以不断重复,当单击按钮再次添加所有相同的联系人时,我再次获得所有联系人。这让我觉得重复检查方法根本无法正常工作,但我没有得到任何帮助

我在外面创建了两个列表数组:

List<String> phnnumbers = new ArrayList<String>();
List<String> names = new ArrayList<String>();

这是添加联系方式:

 public void AddAllContacts(View view) {
    try {
        Cursor phones = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null);

        while (phones.moveToNext()) {
            String linesp = System.getProperty("line.separator");
            TextView quantityTextView = (TextView) findViewById(R.id.numbersview);
            String name = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
            String phoneNumber = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
            duplicatecheck(name, phoneNumber);
            addthistothelist(name, phoneNumber);
        }
        phones.close();
    }
    catch (Exception e){
        e.printStackTrace();
    }
}

这是重复检查方法:

public void duplicatecheck(String name,String phoneNumber) {
    for (int i=0;i<phnnumbers.size();i++) {
        String thenumber = phnnumbers.get(i);
        String thename= names.get(i);
    if(thenumber.equals(phoneNumber)) {
            phnnumbers.remove(i);
            names.remove(i);
        TextView quantityTextView = (TextView) findViewById(R.id.numbersview);
        String textpost = quantityTextView.getText().toString();
        String newtextpost = textpost.replaceAll(thenumber, "UNBELIEVABLEEE");
        String secondtextpost = newtextpost.replaceAll(thename, "UNBELIEVABLE");
        quantityTextView.setText(secondtextpost);
        NumberOfContactsAdded--;
        }
    }
}

这是在检查重复项并删除后调用的方法,下一个方法是添加数字和名称的方法:

public void addthistothelist(String nameofperson,String NumberOfPerson) {

    String linesp = System.getProperty("line.separator");
    TextView quantityTextView = (TextView) findViewById(R.id.numbersview);
    String textpost = quantityTextView.getText().toString();
    NumberOfPerson = NumberOfPerson.replaceAll("[^0-9]", "");
    if(NumberOfPerson.contains("+1")) {
        phnnumbers.add(NumberOfPerson);
        names.add(nameofperson);
        NumberOfContactsAdded++;
        quantityTextView.append(linesp+nameofperson+" " +NumberOfPerson);
    } else  {
        NumberOfPerson= "+1"+NumberOfPerson;
        phnnumbers.add(NumberOfPerson);
        names.add(nameofperson);
        NumberOfContactsAdded++;
        quantityTextView.append(linesp+nameofperson+" " +NumberOfPerson);
    }
}

我真的迷失了我可能做错的事。我会尝试清理这些代码,但它甚至无法正常工作以便我清理它。

2 个答案:

答案 0 :(得分:3)

你可以这样做:

  1. 为人员创建一个bean类

    公共类人员{     私有字符串名称;     私人String电话;

    public Person(String name, String phone) {
        this.name = name;
        phone = phone.replaceAll("\\W+", "");
        phone = "+1"+phone;
        this.phone = phone;
    }
    
    @Override
    public boolean equals(Object o) {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;
        Person person = (Person) o;
        return name != null ? name.equals(person.name) : person.name == null && (phone != null ? phone.equals(person.phone) : person.phone == null);
    
    }
    
    @Override
    public int hashCode() {
        int result = name != null ? name.hashCode() : 0;
        result = 31 * result + (phone != null ? phone.hashCode() : 0);
        return result;
    }
    

    }

  2. 然后迭代所有的联系人并将它们放在一个集合中,它会自动避免播种

    Set<Person> persons = new HashSet<>();
    
    public void AddAllContacts(View view) {
        try {
            Cursor phones = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null);
    
        while (phones.moveToNext()) {
            String linesp = System.getProperty("line.separator");
            TextView quantityTextView = (TextView) findViewById(R.id.numbersview);
            String name = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));
            String phoneNumber = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
            Person person = new Person(name, phoneNumber);
            persons.add(person);
        }
        phones.close();
    

    //这里你想要你可以用Person's Set 做什么         }         catch(例外e){             e.printStackTrace();         }     }

答案 1 :(得分:0)

我没有使用android进行编程的经验,但我可以看到的一件事是,当你在迭代phnnumbers的同时从phnnumber中删除元素时,你不应该这样做。要么使用迭代器,要么将元素/元素索引添加到列表中,并在迭代完phnnumbers后从phnnumbers中删除它们。