本文介绍了从其他应用程序打开 Twitter 应用程序中的页面 - Android的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我一直在寻找某种方法来启动 Twitter 应用程序并从我的应用程序打开指定页面,而无需 webview.我在这里找到了 Facebook 的解决方案:在指定的个人资料页面上打开 Facebook 应用
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 on specified profile page
我需要类似的东西.
编辑我刚刚找到了一个解决方案:
EDITI just found a solution:
try {
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("twitter://user?screen_name=[user_name]"));
startActivity(intent);
} catch (Exception e) {
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://twitter.com/#!/[user_name]")));
}
推荐答案
这对我有用:twitter://user?user_id=id_num
这篇关于从其他应用程序打开 Twitter 应用程序中的页面 - Android的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!