Searched refs:emailIntent (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | QuickResponseActivity.java | 106 Intent emailIntent = AlertReceiver.createEmailIntent(QuickResponseActivity.this, in run() local 108 if (emailIntent != null) { in run() 110 startActivity(emailIntent); in run()
|
D | AlertReceiver.java | 296 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/ |
D | Utils.java | 1613 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()
|