Android examples for Intent:Intent Bundle
get Bundle Intent
//package com.java2s; import android.content.Intent; import android.os.Bundle; public class Main { public static Intent getBundleIntent(Bundle bundle) { Intent intent = new Intent(); intent.putExtras(bundle);/*w w w . j a va 2 s . c o m*/ return intent; } }