从Android应用程序打开Twitter

时间:2014-04-19 21:47:39

标签: android android-intent twitter android-browser

从我的Android应用程序中,我想打开一个指向Twitter页面的链接(在浏览器中)。我用Facebook做了同样的事情:

public static Intent getOpenFacebookIntent(Context context) {

 try {
context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/id"));
 } catch (Exception e) {
return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/name"));
 }
}

有没有用Twitter做同样的事情?

0 个答案:

没有答案