Contacts Application Control – vCard VIEW operation
How to handle contact information (such as phone numbers, email addresses, and Web addresses) in your own application's address book using the device's Contacts application. vCard VIEW operation displays the contact information from a vCard.
var uri = "file:///Contacts.vcf";
var mimeType = "text/vcard";
var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/view", uri, mimeType);
tizen.application.launchAppControl(appControl, "tizen.contacts",
function() {
console.log("launch appControl succeeded");
}, function(e) {
/* Error handling */
}, null);