来自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上经历了几个教程和帖子,但我对TwitterAuthConfig
,TWITTER_KEY
/ TWITTER_SECRET
以及所有这些内容感到困惑。有没有像iOS一样的简单方法?
谢谢。