share with friend code in android java
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.setType("text/plain");
String sharebody = "Download Health Tips in Hindi Now Click this link :- https://play.google.com/store/apps/details?id=com.happylife.healthtipsinhindi";
sendIntent.putExtra(Intent.EXTRA_TEXT,sharebody);
startActivity(Intent.createChooser(sendIntent , "Choose Your Account : "));
break;