Home | History | Annotate | Download | only in opp

Lines Matching defs:intent

39 import android.content.Intent;
54 final Intent intent = getIntent();
55 final String action = intent.getAction();
68 private static Intent createLiveFolder(Context context, Uri uri, String name, int icon) {
69 final Intent intent = new Intent();
71 intent.setDataAndNormalize(uri);
72 intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_BASE_INTENT, new Intent(
74 intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_NAME, name);
75 intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON, Intent.ShortcutIconResource
77 intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_DISPLAY_MODE, LiveFolders.DISPLAY_MODE_LIST);
79 return intent;