Java tutorial
//package com.java2s; //License from project: Open Source License import android.app.Activity; import android.content.Intent; public class Main { public static void sendText(Activity context, String text) { Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); // sendIntent.putExtra(Intent.EXTRA_TEXT, text); // sendIntent.setType("text/plain"); context.startActivity(Intent.createChooser(sendIntent, text)); } }