How To Send Vcard As An Sms/mms?
Hi everyone, I am working on an application,which has the functionality of sending vcard(vcf files),Ive generated a vcf file of a particular contact and able to send
Solution 1:
As you have generated .vcf
file of vcard. then you can attach this file with the system's intent to send it as MMS.
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("text/x-vcard");
sendIntent.putExtra(Intent.EXTRA_STREAM,
Uri.parse(outputFile.toURL().toString()));
startActivity(sendIntent);
Post a Comment for "How To Send Vcard As An Sms/mms?"