Open Facebook page from Android app?

前端 未结 26 3490
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 07:03

from my Android app, I would like to open a link to a Facebook profile in the official Facebook app (if the app is installed, of course). For iPhone, there exists the

26条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-22 07:25

    try {
           String[] parts = url.split("//www.facebook.com/profile.php?id=");
           getPackageManager().getPackageInfo("com.facebook.katana", 0);
           startActivity(new Intent (Intent.ACTION_VIEW, Uri.parse(String.format("fb://page/%s", parts[1].trim()))));
        } catch (Exception e) {
           startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
        }
    

提交回复
热议问题