Java tutorial
//package com.java2s; import android.content.Intent; import android.os.Bundle; public class Main { public static void putDataIntoIntent(Intent intent, String str) { Bundle bundle = new Bundle(); bundle.putString("data", str); intent.putExtra("data", bundle); } }