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/
DAlertReceiver.java305 PendingIntent mapIntent = null, callIntent = null, snoozeIntent = null, emailIntent = null; in buildBasicNotification() local
318 emailIntent = createBroadcastMailIntent(context, eventId, title); in buildBasicNotification()
352 if (emailIntent != null && numActions < MAX_NOTIF_ACTIONS) { in buildBasicNotification()
354 resources.getString(R.string.email_guests_label), emailIntent); in buildBasicNotification()
393 if (emailIntent == null || numActions >= MAX_NOTIF_ACTIONS) { in buildBasicNotification()
397 contentView.setOnClickPendingIntent(R.id.email_button, emailIntent); in buildBasicNotification()
DQuickResponseActivity.java106 Intent emailIntent = AlertReceiver.createEmailIntent(QuickResponseActivity.this, in run() local
108 if (emailIntent != null) { in run()
110 startActivity(emailIntent); in run()
/packages/apps/Calendar/src/com/android/calendar/
DUtils.java1583 Intent emailIntent = new Intent(android.content.Intent.ACTION_SENDTO, Uri.parse(uri)); in createEmailAttendeesIntent() local
1584 emailIntent.putExtra("fromAccountString", ownerAccount); in createEmailAttendeesIntent()
1589 emailIntent.putExtra(Intent.EXTRA_TEXT, body); in createEmailAttendeesIntent()
1592 return Intent.createChooser(emailIntent, resources.getString(R.string.email_picker_label)); in createEmailAttendeesIntent()