Can I somehow receive a response when I insert vCard into the phone?
This is what I've done.
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(Uri.fromFile(file), "text/x-vcard");
startActivityForResult(intent, CONTACT_REQUEST);
Unfortunately, it immediately returns RESULT_CANCELED
.