Is there any possibility to invoke facebook & twitter app from andriod emulator( im using android emulator 3.2honey comb)
Please help me on this???
Is there any possibility to invoke facebook & twitter app from andriod emulator( im using android emulator 3.2honey comb)
Please help me on this???
This currently works, although you can't bet on it when the facebook app updates.
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.facebook.katana", "com.facebook.katana.ProfileTabHostActivity");
intent.putExtra("extra_user_id", user_id);
this.startActivity(intent);
You may want to place this in a try-catch(NullPointerException e) block so as not to crash the app when it doesn't work anymore.