Я нашел ответ. Мы можем реализовать такую функциональность:
1) создание нового типа поля «Контакты» (см. Ссылку в конце ответа);
2) создание действия, которое будет выполнять это действие:
if (getIntent().getData() != null) {
Cursor cursor = managedQuery(getIntent().getData(), null, null, null, null);
if (cursor.moveToNext()) {
String username = cursor.getString(cursor.getColumnIndex("DATA1"));
TextView tv = (TextView) findViewById(R.id.profiletext);
tv.setText("This is the profile for " + username);
}
} else {
// How did we get here without data?
finish();
}
3) добавление специального намерения в Activity в нашем Manifest.xml:
<activity android:name=".ProfileActivity"
android:label="Profile">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/vnd.org.c99.SyncProviderDemo.profile" />
</intent-filter>
</activity>
Ответ (и полное руководство) был найден здесь .