Java tutorial
//package com.java2s; import android.content.Context; import android.content.Intent; public class Main { public static void forwardBySms(Context context, String body) { if (body != null) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("vnd.android-dir/mms-sms"); // intent.putExtra("forwarded_message",true); // comment this may improve performance for forwarding sms intent.putExtra("sms_body", body); context.startActivity(intent); } } }