Android Share Link with WhatsApp

倾然丶 夕夏残阳落幕 提交于 2019-12-12 01:08:54

问题


I am trying to share link with my android app with this:

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);

this is the share Strong :

Check out my link:\n http://my123domain.com/v.php?vid=123456-123456-123456

But when i share it with Whats App the link is not click able, Any idea Why?


回答1:


Whatsapp does not allow sending clickable text links to people who do not have you in their contact list. Make sure receiving party have you in their contact list.



来源:https://stackoverflow.com/questions/27363741/android-share-link-with-whatsapp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!