Home
last modified time | relevance | path

Searched refs:emailIntent (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/alerts/
DQuickResponseActivity.java106 Intent emailIntent = AlertReceiver.createEmailIntent(QuickResponseActivity.this, in run() local
108 if (emailIntent != null) { in run()
110 startActivity(emailIntent); in run()
DAlertReceiver.java296 PendingIntent mapIntent = null, callIntent = null, snoozeIntent = null, emailIntent = null; in buildBasicNotification() local
309 emailIntent = createBroadcastMailIntent(context, eventId, title); in buildBasicNotification()
343 if (emailIntent != null && numActions < MAX_NOTIF_ACTIONS) { in buildBasicNotification()
345 resources.getString(R.string.email_guests_label), emailIntent); in buildBasicNotification()
384 if (emailIntent == null || numActions >= MAX_NOTIF_ACTIONS) { in buildBasicNotification()
388 contentView.setOnClickPendingIntent(R.id.email_button, emailIntent); in buildBasicNotification()
/packages/apps/Calendar/src/com/android/calendar/
DUtils.java1613 Intent emailIntent = new Intent(android.content.Intent.ACTION_SENDTO, Uri.parse(uri)); in createEmailAttendeesIntent() local
1614 emailIntent.putExtra("fromAccountString", ownerAccount); in createEmailAttendeesIntent()
1619 emailIntent.putExtra(Intent.EXTRA_TEXT, body); in createEmailAttendeesIntent()
1622 return Intent.createChooser(emailIntent, resources.getString(R.string.email_picker_label)); in createEmailAttendeesIntent()