Open page in Twitter app from other app - Android

前端 未结 6 1953
南旧
南旧 2020-12-22 20:54

I was looking for some way to launch Twitter app and open a specified page from my application, without webview. I found the solution for Facebook here: Opening facebook app

6条回答
  •  自闭症患者
    2020-12-22 21:26

    For me this did the trick it opens Twitter app if you have it or goes to web browser:

     Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/"+"USERID"));
                        startActivity(intent);
    

提交回复
热议问题