我想从我的Android应用程序中打开一个Facebook链接。 该网址看起来像http://www.facebbok.com/abcxyz。它应该打开' abcxyz' Facebook应用程序中的页面,但它始终在浏览器中打开。
代码:
try
{
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
activityContext.startActivity(browserIntent);
}
catch (ActivityNotFoundException ex)
{
ex.printStackTrace();
}
我的Android操作系统版本是6.0.1。
我在Instagram上遇到了同样的问题http://www.instagram.com/abcxyz,而其他应用程序如Youtube也有效。
答案 0 :(得分:11)
您应该使用Facebook的自定义网址方案强制应用打开您的网页,如下所示:
public Intent getFacebookIntent(String url) {
PackageManager pm = context.getPackageManager();
Uri uri = Uri.parse(url);
try {
ApplicationInfo applicationInfo = pm.getApplicationInfo("com.facebook.katana", 0);
if (applicationInfo.enabled) {
uri = Uri.parse("fb://facewebmodal/f?href=" + url);
}
}
catch (PackageManager.NameNotFoundException ignored) {
}
return new Intent(Intent.ACTION_VIEW, uri);
}