您好我只想通过下面的链接(在我的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);
我尝试了其他链接,但它只显示我的墙..
有人?
答案 0 :(得分:1)
您应该使用ID打开页面。
Intent facebookIntent = new Intent(
Intent.ACTION_VIEW,
Uri.parse("fb://profile/468580313168290"));
startActivity(facebookIntent);
我建议你将它封装在try catch中。在catch中打开一个普通的浏览器意图