0

在 Android SampleSyncAdapter 中有以下代码:

/**
 * Adds a profile action
 *
 * @param userId the userId of the sample SyncAdapter user object
 * @return instance of ContactOperations
 */
public ContactOperations addProfileAction(long userId) {
    mValues.clear();
    if (userId != 0) {
        mValues.put(SampleSyncAdapterColumns.DATA_PID, userId);
        mValues.put(SampleSyncAdapterColumns.DATA_SUMMARY, mContext
            .getString(R.string.syncadapter_profile_action));
        mValues.put(SampleSyncAdapterColumns.DATA_DETAIL, mContext
            .getString(R.string.view_profile));
        mValues.put(Data.MIMETYPE, SampleSyncAdapterColumns.MIME_PROFILE);
        addInsertOp();
    }
    return this;
}

我将此添加为我的活动的过滤器

    <intent-filter>
        <action android:name="@string/syncadapter_profile_action" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="vnd.android.cursor.item/vnd.myapp.profile"
            android:host="contacts" />
     </intent-filter>  

其中 SampleSyncAdapterColumns.MIME_PROFILE = vnd.android.cursor.item/vnd.myapp.profile

我添加了一个联系人,我可以看到该条目,但是当我点击它时没有任何反应。当用户点击一个活动时,我应该怎么做?我正在尝试为 Pre-honeycomb 设备 执行此处建议的操作:诀窍是插入一个数据行“在 MyApp 中编辑”,这会将用户带到您的应用程序,然后您的应用程序将提供一个编辑器活动

4

2 回答 2

1

我认为您的意图过滤器可能不正确。根据此条目,正确的操作和数据项应类似于以下内容:

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="vnd.android.cursor.item/vnd.myapp.profile" />
</intent-filter>
于 2011-12-06T17:13:52.157 回答
1

这就是我所做的。在清单文件中,我为我的一项活动添加了这些意图过滤器

<intent-filter >
    <action android:name="android.intent.action.VIEW" />

    <category android:name="android.intent.category.DEFAULT" />

    <data android:mimeType="vnd.android.cursor.item/vnd.myapp.profile" />
</intent-filter>

<intent-filter >
    <action android:name="android.intent.action.EDIT" />

    <category android:name="android.intent.category.DEFAULT" />

    <data
        android:host="contacts"
        android:mimeType="vnd.android.cursor.item/person" />
    <data
        android:host="com.android.contacts"
        android:mimeType="vnd.android.cursor.item/contact" />
    <data
        android:host="com.android.contacts"
        android:mimeType="vnd.android.cursor.item/raw_contact" />
</intent-filter>            

当用户使用示例同步适配器中的代码单击我在同步适配器帐户中添加的配置文件操作时,将广播第一个(见上文)

第二个允许您在用户想要编辑联系人时处理本机通讯录广播的意图。考虑在第一种情况下,因为 mimetype 是您的一个同步适配器,您的活动将被直接调用。在第二种情况下,将显示一个对话框,其中包含已注册以处理 android.intent.action.EDIT 的应用程序列表 android:mimeType="vnd.android.cursor.item/person", android:mimeType="vnd.android .cursor.item/contact”等

在我的活动中,我有一个这样的方法:

boolean handleIntent(Intent intent) {
    String action = intent.getAction();

    Uri uri = intent.getData();
    if (action.equalsIgnoreCase(Intent.ACTION_VIEW)) {
        handleProfileAction(uri);  // in this case uri points to ProfileAction Data raw that is one of the Data that your sync adaoter has added in the raw contact 
    } else if (action.equalsIgnoreCase(Intent.ACTION_EDIT)) {
        editYourContact(uri); // in this case the uri points to the Contact containing you raw contact although at least on SonuEricsson  Xperia mini when this intent is broadcasted by the context menu "edit contact" command I receive the URI of the raw contact when there is only one.
    }
    return true;
}
于 2011-12-12T18:20:31.667 回答