摘要:Android - 開啟Facebook粉絲頁
開啟粉絲頁,可以判斷對方是否有裝app,若有則使用該app開啟粉絲頁,若沒有,則開啟外部瀏覽器開啟粉絲頁
try {
getPackageManager().getPackageInfo("com.facebook.katana", 0);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/"));
startActivity(intent);
} catch (Exception e) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/profile.php?id=&fref=ts"));
startActivity(intent);
}