Monday, March 20, 2017

Sharing Intent in Android app

Sharing Intent in Android app

This function is to invoke the sharing Intent in Android .

public void shareIt(){
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = "Apps Taksir Zakat Emas muat turun di Google Store... ";
shareBody=shareBody+" #zakatkalkulator";
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Apps Taksir Zakat Emas");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Kongsikan melalui:"));
}//end shareIt

Go to link Download