Lines Matching refs:intent
21 import android.content.Intent;
40 * The intent used to start the application.
42 public Intent intent;
61 public Intent getIntent() {
62 return intent;
83 intent = makeLaunchIntent(info);
94 intent = new Intent(info.intent);
112 public static Intent makeLaunchIntent(LauncherActivityInfo info) {
116 public static Intent makeLaunchIntent(ComponentName cn) {
117 return new Intent(Intent.ACTION_MAIN)
118 .addCategory(Intent.CATEGORY_LAUNCHER)
120 .setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);