Home | History | Annotate | Download | only in settings

Lines Matching defs:intent

20 import android.content.Intent;
33 protected Intent getTargetIntent() {
34 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
36 targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
42 Intent shortcutIntent = intentForPosition(position);
43 shortcutIntent.setFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
44 Intent intent = new Intent();
45 intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
46 Intent.ShortcutIconResource.fromContext(this, R.mipmap.ic_launcher_settings));
47 intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
48 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, itemForPosition(position).label);
49 setResult(RESULT_OK, intent);
62 protected List<ResolveInfo> onQueryPackageManager(Intent queryIntent) {