public void shareApp() {
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_SUBJECT, "My App");
share.putExtra(Intent.EXTRA_TEXT, "share this");
startActivity(Intent.createChooser(share, "Share via!"));
}