Home | History | Annotate | Download | only in com.example.android.documentcentricrelinquishidentity

Lines Matching defs:intent

20 import android.content.Intent;
26 * above it in the task stack. These identifiers include the task base Intent, and the task name,
27 * color and icon used in the recent task list. The base @link{Intent} is used to match the task when
28 * relaunching based on an incoming Intent.
44 final Intent intent = newDocumentIntent();
45 startActivity(intent);
49 * Returns an new intent to start {@link NewDocumentActivity}
52 private Intent newDocumentIntent() {
53 final Intent newDocumentIntent = new Intent(this, NewDocumentActivity.class);
54 newDocumentIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
56 newDocumentIntent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);