某些Android设备上的应用访问时,联系人列表会崩溃

时间:2012-12-22 10:44:20

标签: android

在我的应用中,我让用户有机会从他的联系人中选择一个号码。在我的手机上,(三星Galaxy SPlus)它每次都能正常工作,甚至没有任何警告。我发送这个应用程序给我的一些朋友测试它,然后我上传它,他们说每次从联系人列表中选择一个名字时都会崩溃。我现在无法访问任何其他设备,所以您在我的代码中看到任何问题吗?

search_contacts.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {
                Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
                intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE);
                startActivityForResult(intent, 1);
            }
        });

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (data != null) {
            Uri uri = data.getData();

            if (uri != null) {
                Cursor c = null;
                try {
                    c = getContentResolver()
                            .query(uri,
                                    new String[] {
                                            ContactsContract.CommonDataKinds.Phone.NUMBER,
                                            ContactsContract.CommonDataKinds.Phone.TYPE },
                                    null, null, null);

                    if (c != null && c.moveToFirst()) {
                        String number = c.getString(0);
                        SharedPreferences settings = PreferenceManager
                                .getDefaultSharedPreferences(MainActivity.this);
                        SharedPreferences.Editor editor1 = settings.edit();
                        editor1.putString("phone", number);
                        editor1.commit();
                        System.out.println("Set phone number to: " + number);
                        send_to = number;
                        text.setText(send_to);
                        // int type = c.getInt(1);
                        // showSelectedNumber(type, number);
                    }
                } finally {
                    if (c != null) {
                        c.close();
                    }
                }
            }
        }
    }

0 个答案:

没有答案