从我的Android应用程序链接到Instagram应用程序中的页面

时间:2014-01-04 15:05:11

标签: android instagram

如何从我的Android应用程序链接到Instagram应用程序中的页面? 例如对于facebook我使用下面的代码:

public static Intent getOpenFacebookIntent(Context context) {

   try {
    context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
    return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/5676133521"));
   } catch (Exception e) {
    return new Intent(Intent.ACTION_VIEW, Uri.parse("https://touch.facebook.com/androiddevs"));
   }
}

}

0 个答案:

没有答案