clear Extras from Intent by setting new Bundle - Android Intent

Android examples for Intent:Intent Bundle

Description

clear Extras from Intent by setting new Bundle

Demo Code


//package com.book2s;
import android.content.Intent;
import android.os.Bundle;

public class Main {
    public static void clearExtras(Intent i) {
        i.putExtras(new Bundle());
    }//  w w  w  .  jav  a  2  s. co  m
}

Related Tutorials