android respond to contact > send? -
i'm looking magic incantation make app respond contact > send. want able receive contact's uri in order retrieve contact. have manifest filter / code snippet this?
thanks.
i have not testes, try intent filter based on action_send
, mime type vcard. once again, not tested:
<intent-filter> <action android:name="android.intent.action.send"/> <category android:name="android.intent.category.default"/> <data android:mimetype="text/x-vcard"/> </intent-filter>
Comments
Post a Comment