I can open FaceBook page in browser:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/<page_name>")));
I can open my profile page in FB application:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://facewebmodal/f?href=http://www.facebook.com/<face_book_name>")));
But when I try to open the Facebook page (not personal, but page) in FB application:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://facewebmodal/f?href=http://www.facebook.com/<page_name>")));
I get "Trouble Loading":
So, how can I open a Facebook page in Facebook app from my application on Android?