How can I launch a facebook app from my app in android?
|
|
To just start the default Launcher Activity:
I did some research, because I wanted to find this out :). I found some ways how to start different activities easily. But I can not guarantee that this will work after upgrades of facebook. I tested it with my current facebook app and it works. At least I tested it with "adb shell" using "am start .....". Basic is:
the facebook.com part is not checked. you can even type: "facebook://gugus.com/inbox" having the same effect. How to do this in adb.
this will start the inbox activity. Here some Uris with examples. I think they speak for themselves what they do.
there might be additianl parameters you can give to certain of those uris, but I have no time to go through all the code of those activities. How did I do this? check out apktool. |
|||||||||||||||
|
|
Looking at the latest Facebook apk (1.6), it looks like both "facebook://" and "fb://" are registered protocols. facebook://
fb://
Sorry if I missed some... only played with a handful of them in the emulator to see if they actually work - a bunch of them will cause the Facebook application to crash. ¹ where postid is in the |
|||||||||||||
|
|
Launching of another application from your application in android, can be done only if Intent action you fire matches with intent filter of other application you want to launch. As @patrick demonstrated, download facebook.apk to emulator and try to run that through adb shell command. It works fine.. Pass Intent filter and data as an Uri |
||||
|
|
|
If any one want to directly open a photo
where ownerId is the Facebook id of the user who uploaded this picture and pid is PhotoId Enjoy :)) |
||||
|
|
|
Hope this link helps you: How to open another application from current application on android |
|||
|
|

