Possible Duplicate:
Open Facebook page from Android app?
when I load a url with
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
when it starts with "https://twitter.com", it offering me different android applications including Twitter. But when I load a url when she starts with "https://facebook.com" android proposed that browsers do.
I know that I can pry open with the facebook app if I use the API, but I just have one button in my application for facebook and I do not think the API is the lightest. Do you have any idea to overcome this requirement and ensure that android offers me even when facebook?
Those who think what this post is already answered are right, but the facebook API is heavy and I'd try to avoid. thank you for your understanding. I hope that there is a possibility.