Home | History | Annotate | Download | only in ui

Lines Matching defs:intent

26 import android.content.Intent;
35 Intent intent = getIntent();
37 intent.setClass(this, FolderSelectionActivity.class);
38 intent.setFlags(
39 Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_FORWARD_RESULT);
40 intent.setAction(Intent.ACTION_CREATE_SHORTCUT);
41 intent.putExtra(FolderSelectionActivity.EXTRA_ACCOUNT_SHORTCUT,
44 intent.setClass(this, MailboxSelectionActivity.class);
45 intent.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
47 startActivity(intent);