Android:如何仅通过推文发布推文(不是通过直接消息?)

时间:2017-02-04 20:01:12

标签: android android-intent twitter

以下是我用来分享推文的代码:

Height

这会打开一个弹出窗口,使用户可以通过推文或直接消息分享它,当我只希望它由推文共享时。我怎么能这样做?

非常感谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

    Intent tweet = new Intent(Intent.ACTION_VIEW);
    tweet.setData(Uri.parse("http://twitter.com/?status=" +   Uri.encode(message)));// replace message by your string message
    startActivity(tweet);