在没有原生应用的Android中将图像分享到Twitter

时间:2015-10-17 13:32:04

标签: android twitter

我想在没有原生应用的情况下与twitter分享图片和文字。我安装了twitter推荐的Fabric插件,并使用此代码进行共享:

TweetComposer.Builder builder = new TweetComposer.Builder(this)
 .text("just setting up my Fabric.")
 .image(myImageUri);
builder.show();

In the event that the Twitter app is not installed, TweetComposer will create an intent to interact with the Twitter.com in a browser. The browser ignores a specified image.如果未安装本机应用,是否可以发送图像?

1 个答案:

答案 0 :(得分:1)

经过多次搜索,我终于为此选择了Twitter4j库。

另外this教程非常有帮助。