我正在寻找某种方式来启动 Twitter 应用程序并从我的应用程序中打开指定页面,而无需 webview。我在这里找到了 Facebook 的解决方案: Opening facebook app on specified profile page
我需要类似的东西。
编辑 我刚刚找到了一个解决方案:
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]")));
}