-2
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("text/plain");
String text = "Text";
sendIntent.setPackage("com.whatsapp");
if (sendIntent != null) {
   sendIntent.putExtra(Intent.EXTRA_TEXT, text);//
   startActivity(Intent.createChooser(sendIntent, "phone number"));

我正在 Eclipse 中开发一个使用默认相机的 Android 应用程序,该应用程序应该拍照并将照片发送给 whatsapp 上的联系人。我想知道如何将我拍摄的最后一张照片发送给 whatsapp、邮件或 Facebook Messenger 上的联系人。

4

1 回答 1

0

您可以将分享功能添加到您的 Android 应用程序。这是链接:http: //developer.android.com/training/sharing/shareaction.html

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/menu_item_share"
    android:showAsAction="ifRoom"
    android:title="Share"
    android:actionProviderClass="android.widget.ShareActionProvider" />
...
</menu>

对于 Intent Share,请查看此链接:

Android:如何将应用程序添加到相机图片的“共享方式”列表

温达

于 2013-08-15T20:28:24.100 回答