如何在Android中显示推文弹出窗口(如在使用SLComposeViewController的iOS中)

时间:2017-01-31 09:33:46

标签: android ios twitter slcomposeviewcontroller

来自iOS背景,我试图了解如何在Android向用户显示简单的预填充Twitter弹出窗口。

使用iOS / Swift,我只需执行以下操作:

if let vc = SLComposeViewController(forServiceType: SLServiceTypeTwitter) {
    vc.setInitialText("Hi there!")
    present(vc, animated: true)
} else {
    print("Twitter account not available")
}

我在SO上经历了几个教程和帖子,但我对TwitterAuthConfigTWITTER_KEY / TWITTER_SECRET以及所有这些内容感到困惑。有没有像iOS一样的简单方法?

谢谢。

0 个答案:

没有答案