I want to start an intent to start Facebook with some extras. How can I do that?
Intent intent = new Intent(<????>);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");
intent.putExtra(Intent.EXTRA_TEXT, "Check that");
startActivity(intent);
I ended up using the Facebook Android SDK.