i need to add a functionality on my app to start Facebook
Asked
Active
Viewed 1,743 times
0
-
Just in case you want to launch the facebook app directly, see this question: http://stackoverflow.com/questions/4191492/launch-facebook-app-from-other-app – Nov 21 '11 at 12:32
1 Answers
2
solved:
Intent intent = new Intent("android.intent.category.LAUNCHER");
intent.setClassName("com.facebook.katana", "com.facebook.katana.LoginActivity");
startActivity(intent);
thanks alextsc

NullPointerException
- 36,107
- 79
- 222
- 382