Android examples for Intent:Intent Bundle
dump Intent extra data
import android.content.Intent; public class Main{ @SuppressWarnings("deprecation") public static String dump(Intent i) { StringBuilder builder = new StringBuilder(); builder.append(i.toString());//from w w w . j a va2 s. c o m if (i.getExtras() != null) { for (String key : i.getExtras().keySet()) { builder.append("[").append(key).append(" , ") .append(i.getExtra(key)).append("]"); } } return builder.toString(); } }