0

在我的应用程序中,我想通过单击按钮在 Twitter 中发布照片。
所以我使用了这么多代码但不起作用。所以我想一键获取在推特上分享照片的代码

4

2 回答 2

2

在去问问题之前。尝试谷歌或搜索类似的问题。

见这里:见这里

于 2012-11-06T09:29:55.297 回答
1

尝试这个:

                Intent targetedShare = new Intent(android.content.Intent.ACTION_SEND);
                targetedShare.setType("image/jpeg"); // put here your mime type
                targetedShare.putExtra(Intent.EXTRA_TEXT,     "My body of post/email");
                targetedShare.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(imagePath)) );

                Intent chooserIntent = Intent.createChooser(targetedShare, "Select app to share");
                chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, targetedShare);
                startActivity(chooserIntent);
于 2012-11-06T09:36:46.137 回答