如何在Facebook上查看某个用户的个人资料页面?

时间:2015-03-26 16:27:56

标签: android facebook

我希望在Facebook上看到某个用户的个人资料页面。我使用了以下代码,但它没有用。我刚看到facebook app上的进度条旋转:

try{
            // open in Facebook app
            getPackageManager().getPackageInfo("com.facebook.katana", 0);
            return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/" + facebookId));
        } catch (Exception e) {
            // open in browser
            return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" +facebookId));
        }

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

使用此

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