OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:emailIntent
(Results
1 - 6
of
6
) 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
);
/frameworks/base/services/core/java/com/android/server/pm/
DefaultPermissionGrantPolicy.java
534
Intent
emailIntent
= new Intent(Intent.ACTION_MAIN);
535
emailIntent
.addCategory(Intent.CATEGORY_APP_EMAIL);
537
emailIntent
, userId);
[
all
...]
/packages/apps/Calendar/src/com/android/calendar/
Utils.java
[
all
...]
Completed in 3747 milliseconds