0

Possible Duplicate:
launch facebook app from other app

I want to open the Facebook app out of my own App using a scheme url. But I dont know how to do that. My scheme url looks like this: fb://page/133105433423897. Maybe via inent and/or parseUri. Any Idea?

Community
  • 1
  • 1
Patrick Lenz
  • 87
  • 2
  • 8

1 Answers1

0

check out following post describing similar problem:

URL to open facebook app in android

copied for quick reference:

You need to use Intents. Here's how to call the FB application (if it is installed):

Intent intent = new Intent();
intent.setClassName("com.facebook.katana","com.facebook.katana.ProxyAuth");
intent.putExtra("client_id", applicationId);
mAuthActivityCode = activityCode;
activity.startActivityForResult(intent, activityCode);
Community
  • 1
  • 1
Praful Bhatnagar
  • 7,425
  • 2
  • 36
  • 44