Open Facebook page from Android app?

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

    Is this not easier? For example within an onClickListener?

    try {
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/426253597411506"));
        startActivity(intent);
    } catch(Exception e) {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.facebook.com/appetizerandroid")));
    }
    

    PS. Get your id (the large number) from http://graph.facebook.com/[userName]

提交回复
热议问题