Open Facebook page from Android app?

前端 未结 26 3465
被撕碎了的回忆
被撕碎了的回忆 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:50

    For Facebook page:

    try {
        intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/" + pageId));
    } catch (Exception e) {
        intent =  new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + pageId));
    }
    

    For Facebook profile:

    try {
        intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/" + profileId));
    } catch (Exception e) {
        intent =  new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + profileId));
    }
    

    ...because none of the answers points out the difference

    Both tested with Facebook v.27.0.0.24.15 and Android 5.0.1 on Nexus 4

提交回复
热议问题