当我将vCard插入手机时,我能以某种方式收到回复吗?
这就是我所做的。
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);
不幸的是,它会立即返回RESULT_CANCELED
。