0

您好,我只想通过以下链接(在我的 android 项目上)调用 Facebook 应用程序:

String url_facebook_prixo = "https://www.facebook.com/pages/Prixo/468580313168290";

我试过这个:

Uri uri = Uri.parse("facebook://facebook.com/page{468580313168290}");
                            Intent viewIntent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(viewIntent);

我尝试使用其他链接,但它只显示我的墙..

有人吗?

4

1 回答 1

1

您应该使用 id 打开页面。

Intent facebookIntent = new Intent(
            Intent.ACTION_VIEW,
            Uri.parse("fb://profile/468580313168290"));
startActivity(facebookIntent);

我建议您将其封装在 try catch 中。在catch里面打开一个普通的浏览器意图

于 2012-08-27T10:23:04.823 回答