如何将应用程序数据分享给whatsapp 好友??

How to share application data to whatsapp friends??

我正在开发一个 android 应用程序,我想在其中通过 WhatsApp 分享我的数据并远足(给我 phone 联系人中的朋友)或邮寄给我的朋友。

谁能用代码行解释一下...

与大多数社交 Android 应用程序一样,WhatsApp 会聆听共享媒体和文本的意图。只需创建一个分享文本的意图,例如:

Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
sendIntent.setPackage("com.whatsapp");

startActivity(sendIntent);