【问题标题】:Show facebook , twitter and other installed apps in android share menu在 android 共享菜单中显示 facebook、twitter 和其他已安装的应用程序
【发布时间】:2015-04-27 05:58:07
【问题描述】:

我想在我的应用程序中添加共享选项,我可以将图像共享到移动设备中安装的任何应用程序(Facebook、Twitter、watsapp、Gmail)。但是当我使用下面的代码时,它只显示下面提到的应用程序,如下图所示。如何添加其他应用。

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("IMAGE/png");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("<p>This is the text that will be shared.</p>"));
startActivity(Intent.createChooser(sharingIntent,"Share using"));

【问题讨论】:

  • 你的设备上安装了whats app、twitter和facebook吗?
  • 是的应用已经安装

标签: android eclipse facebook android-intent


【解决方案1】:
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("<p>This is the text that will be shared.</p>"));
startActivity(Intent.createChooser(sharingIntent,"Share using"));

【讨论】:

  • 好的,谢谢它正在工作......现在它也显示其他应用程序,但是当它点击 facebook 时,它会打开 facebook 共享页面,但不显示我发送的文本 ot 图像。
猜你喜欢
  • 2015-07-20
  • 1970-01-01
  • 2013-06-19
  • 1970-01-01
  • 2013-08-13
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-03-31
相关资源
最近更新 更多