如何使用 Android Intent System 在 whatsapp 上与最少 n 人分享文本
How to share a text with minimum n number of people on whatsapp using Android Intent System
我知道如何使用 intent 将应用程序中的一些文本共享到 whatsapp。
但我想确保用户与最少 n 个联系人(如 5 或 10)共享文本。
我该怎么做?
Intent sendIntent = new Intent();
sendIntent.setPackage("com.whatsapp");
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);
你不能那样做,我的朋友,Whats 应用程序是一个非常封闭的应用程序,即使它与 Facebook 合并时它也停止了所有现有的 API。
目前无法使用 whatsapp 实现
我知道如何使用 intent 将应用程序中的一些文本共享到 whatsapp。 但我想确保用户与最少 n 个联系人(如 5 或 10)共享文本。 我该怎么做?
Intent sendIntent = new Intent();
sendIntent.setPackage("com.whatsapp");
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(sendIntent);
你不能那样做,我的朋友,Whats 应用程序是一个非常封闭的应用程序,即使它与 Facebook 合并时它也停止了所有现有的 API。
目前无法使用 whatsapp 实现