1

我正在制作一个使用电话联系人的项目。在这个应用程序中,我将号码(来电号码)与联系人列表中保存的号码匹配。我已经格式化了号码,它可以在以这种格式 +919045308261 保存号码的手机上工作,并且它不能在以这种格式 +91 90 45 308261 保存号码的手机上工作 我用过的代码是...

int hasPhoneNumber = Integer.parseInt(cursor.getString(cursor
                        .getColumnIndex(HAS_PHONE_NUMBER)));

                if (hasPhoneNumber > 0) {


                    Cursor phoneCursor = contentResolver.query(
                            PhoneCONTENT_URI, null, Phone_CONTACT_ID + " = ?",
                            new String[] { contact_id }, null);

                    while (phoneCursor.moveToNext()) {


                        phoneNumber = phoneCursor.getString(phoneCursor
                                .getColumnIndex(NUMBER));
                        String formatedphn = PhoneNumberUtils.formatNumber(phoneNumber);
formatedphn = formatedphn.trim();
                        Log.i("formated number: ", formatedphn);
                //here the number is from which the call is incoming        
                        if(number.equals(formatedphn)){
                            Toast.makeText(getApplicationContext(), "got it", Toast.LENGTH_SHORT).show();
                            Log.i("Match occurs", "got a hit");
                            //Log.i("number= ", number);
                            String contname = phoneCursor.getString(phoneCursor
                                    .getColumnIndex(DISPLAY_NAME));
                            if(!contname.equals(null)){
                                Toast.makeText(getApplicationContext(), contname, Toast.LENGTH_SHORT).show();
                                tts.speak(contname+" calling", TextToSpeech.QUEUE_FLUSH, null);

                            }
                        }
4

4 回答 4

1

String.trim()删除字符串的所有前导和尾随空格,但不删除中间的空格。要删除字符串的所有空格,您可以使用此正则表达式:

str = str.replaceAll("\\s+","");
于 2014-04-05T07:48:20.670 回答
0

您可以执行以下操作,在从字符串中删除所有空格后进行比较。

String st = " Hello world";
st = st.trim(); // It should work fine and remove all white spaces.

现在在比较时比较两个字符串。最好的

于 2014-04-05T06:26:45.180 回答
0

以下是一些参考资料:

于 2014-04-05T06:27:12.697 回答
0

根据这个线程如何使用PhoneNumberUtils格式化电话号码? 您可以从 +98 91 28 033921 到这个 0912 80 33921 得到格式化的数字并与这个进行比较

于 2014-04-05T07:59:42.633 回答