Java tutorial
//package com.java2s; import android.content.Intent; import android.os.Bundle; public class Main { public static void transferData(Bundle oldBundle, Bundle newBundle) { if (oldBundle != null) { newBundle.putAll(oldBundle); } } public static void transferData(Intent oldIntent, Intent newIntent) { if (oldIntent == null) { return; } newIntent.putExtras(oldIntent); } }