我正在尝试与我的Android应用分享链接:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, share);
intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "");
mContext.startActivity(intent);
这是share
强:
Check out my link:\n http://my123domain.com/v.php?vid=123456-123456-123456
但是当我与Whats App
分享时,该链接无法点击,
知道为什么?
答案 0 :(得分:3)
Whatsapp不允许向在联系人列表中没有您的人发送可点击的文本链接。确保接收方将您置于其联系人列表中。