我想在facebook,twitter,google +上分享文字,也可以在我的Android应用中通过电子邮件分享。我搜索过并找到了以下代码:
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("plain/text");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "My text");
startActivity(Intent.createChooser(sharingIntent,"Share using"));
我使用谷歌模拟器API8平台2.2。 我在我的模拟器上安装了facebook和g +,我还配置了我的gmail帐户。当我点击上面代码写的分享按钮时,我没有得到一个菜单来选择分享使用:facebook,g +,gmail ..相反它直接使用我的gmail帐户分享..有什么问题与模拟器?我究竟做错了什么??请帮帮我......
答案 0 :(得分:1)
请尝试在此处学习本教程:http://mobile.tutsplus.com/tutorials/android/android-sdk-implement-a-share-intent/
也许你错过了一些步骤。