Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Intent; public class Main { public static final String IS_FROM_SELF = "com.mengdd.hellobrowser.IS_FROM_SELF"; public static Intent newIntentFromSelf(String action) { return newIntentFromSelf().setAction(action); } public static Intent newIntentFromSelf() { Intent intent = new Intent(); intent.putExtra(IS_FROM_SELF, true); return intent; } }