Java tutorial
//package com.java2s; import android.content.Intent; public class Main { public static Intent createShareIntent(String string) { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_TEXT, string); return intent; } }