I search through the web and found this sharing to facebook, twitter or email by using the share intent. This share intent is it suppose to have those facebook, twitter icon there to select for sharing? When i run in emulator, it writes no application can run this action. Is it the sharing cannot be run in emulator or my code is not completely done.
Below is my code
btnShare.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("plain/text");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT,
"This is the text that will be shared.");
startActivity(Intent.createChooser(sharingIntent,
"Share via"));
}
});