get Bundle Intent - Android Intent

Android examples for Intent:Intent Bundle

Description

get Bundle Intent

Demo Code


//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;
    }
}

Related Tutorials