我正在开发一个应用程序,我想通过 facebook、twitter、gmail、message 或更多选项共享我的数据,这些选项由share intent
do 提供,我只需转到此代码..
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE );
sharingIntent.setType("text/plain");
String shareBody = "Here is the share content body";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject Here");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
但这里的问题是,当我运行一个应用程序时,它只显示消息屏幕(to
等等,输入撰写和发送按钮)我不能给我所有选项。所以请帮我解决这个...