Intent.ACTION_PICK为某些联系人返回空光标

Pou*_*ald 13 sqlite android contacts android-intent android-cursor

我有一个应用程序,其中一个方面是用户选择联系人并通过应用程序向该联系人发送文本.该应用程序仅适用于某些联系人,而其他联系人则失败 更确切地说:

对于我手工输入联系人的联系人,可以Intent.ACTION_PICK轻松找到并将其返回给应用程序,即cursor.moveToFirst()属实.

但对于Facebook导入的联系人(我的手机设置为与Facebook联系人同步),android.database.CursorIndexOutOfBoundsException我点击联系人后得到以下内容.我有一个明显的问题是:在我真正选择了一个联系人后,为什么结果大小为0?为什么是cursor.moveToFirst()假的?

...Caused by: android.database.CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0
05-15 17:57:04.741: E/AndroidRuntime(21301):    at android.database.AbstractCursor.checkPosition(AbstractCursor.java:418)
05-15 17:57:04.741: E/AndroidRuntime(21301):    at android.database.AbstractWindowedCursor.checkPosition(AbstractWindowedCursor.java:136)
05-15 17:57:04.741: E/AndroidRuntime(21301):    at android.database.AbstractWindowedCursor.getString(AbstractWindowedCursor.java:50)
05-15 17:57:04.741: E/AndroidRuntime(21301):    at android.database.CursorWrapper.getString(CursorWrapper.java:114)
05-15 17:57:04.741: E/AndroidRuntime(21301):    at com.company.Game.SendTextActivity.onActivityResult(SendTextActivity.java:118)
05-15 17:57:04.741: E/AndroidRuntime(21301):    at android.app.Activity.dispatchActivityResult(Activity.java:5436)
05-15 17:57:04.741: E/AndroidRuntime(21301):    at android.app.ActivityThread.deliverResults(ActivityThread.java:3188)
05-15 17:57:04.741: E/AndroidRuntime(21301):    ... 11 more
Run Code Online (Sandbox Code Playgroud)

这是我的代码:

dispatchIntent:

Intent pickContactIntent = new Intent(Intent.ACTION_PICK,  Uri.parse("content://contacts"));
pickContactIntent.setType(Phone.CONTENT_TYPE); // Show user only contacts w/ phone numbers
    startActivityForResult(pickContactIntent, PICK_CONTACT_REQUEST);
Run Code Online (Sandbox Code Playgroud)

onActivity结果:

(requestCode == PICK_CONTACT_REQUEST) {
            // Get the URI that points to the selected contact
            Uri contactUri = data.getData();
            // We only need the NUMBER column, because there will be only one row in the result
            String[] projection = { Phone.NUMBER };

            // Perform the query on the contact to get the NUMBER column
            // We don't need a selection or sort order (there's only one result for the given URI)
            // CAUTION: The query() method should be called from a separate thread to avoid blocking
            // your app's UI thread. (For simplicity of the sample, this code doesn't do that.)
            // Consider using CursorLoader to perform the query.
            Cursor cursor = getContentResolver()
                .query(contactUri, projection, null, null, null);
            cursor.moveToFirst();

            // Retrieve the phone number from the NUMBER column
            int column = cursor.getColumnIndex(Phone.NUMBER);
            String number = cursor.getString(column);

            //do work with number here ...
        }
Run Code Online (Sandbox Code Playgroud)

注意:我看到了联系人.但在我选择了Facebook导入的联系人之后,我就崩溃了.

BTW:我的代码片段完全是从android教程中复制的:http://developer.android.com/training/basics/intents/result.html

sto*_*kov 2

您无法通过联系人 API 访问 FB 联系人。