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

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -