Home | History | Annotate | Download | only in ui

Lines Matching refs:intent

24 import android.content.Intent;
33 Intent intent = getIntent();
35 intent.setClass(this, FolderSelectionActivity.class);
36 intent.setFlags(
37 Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_FORWARD_RESULT);
38 intent.setAction(Intent.ACTION_CREATE_SHORTCUT);
39 intent.putExtra(FolderSelectionActivity.EXTRA_ACCOUNT_SHORTCUT, cachedAccounts[0]);
41 intent.setClass(this, MailboxSelectionActivity.class);
42 intent.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
44 startActivity(intent);