HomeSort by relevance Sort by last modified time
    Searched refs:emailIntent (Results 1 - 5 of 5) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/alerts/
QuickResponseActivity.java 106 Intent emailIntent = AlertReceiver.createEmailIntent(QuickResponseActivity.this,
108 if (emailIntent != null) {
110 startActivity(emailIntent);
AlertReceiver.java 296 PendingIntent mapIntent = null, callIntent = null, snoozeIntent = null, emailIntent = null;
309 emailIntent = createBroadcastMailIntent(context, eventId, title);
343 if (emailIntent != null && numActions < MAX_NOTIF_ACTIONS) {
345 resources.getString(R.string.email_guests_label), emailIntent);
384 if (emailIntent == null || numActions >= MAX_NOTIF_ACTIONS) {
388 contentView.setOnClickPendingIntent(R.id.email_button, emailIntent);
    [all...]
  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
MyActivity.java 137 Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
138 emailIntent.setType("text/xml");
140 emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Device XML: " + devicesXml.getName());
141 emailIntent.putExtra(Intent.EXTRA_TEXT, "Note: This is intended to generate a base "
144 emailIntent.putExtra(Intent.EXTRA_STREAM,
146 startActivity(emailIntent);
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 307 Intent emailIntent = new Intent(Intent.ACTION_SEND);
308 emailIntent.setType("image/png");
309 emailIntent.putExtra(Intent.EXTRA_SUBJECT,
311 emailIntent.putExtra(Intent.EXTRA_TEXT,
313 emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
314 startActivity(emailIntent);
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java     [all...]

Completed in 118 milliseconds