Home
last modified time | relevance | path

Searched refs:email (Results 1 – 25 of 146) sorted by relevance

123456

/frameworks/base/core/tests/coretests/src/android/util/
DPatternsTest.java544 String email = "a@a.co"; in testAutoLinkEmailAddress_matchesShortValidEmail() local
545 assertTrue("Should match short valid email: " + email, in testAutoLinkEmailAddress_matchesShortValidEmail()
546 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesShortValidEmail()
550 String email = "email@android.com"; in testAutoLinkEmailAddress_matchesRegularEmail() local
551 assertTrue("Should match email: " + email, in testAutoLinkEmailAddress_matchesRegularEmail()
552 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesRegularEmail()
556 String email = "email@e.somelongdomainnameforandroid.abc.uk"; in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains() local
557 assertTrue("Should match email: " + email, in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains()
558 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains()
562 String email = "e.mail@android.com"; in testAutoLinkEmailAddress_matchesLocalPartWithDot() local
[all …]
/frameworks/ex/common/tests/src/com/android/common/
DRfc822ValidatorTest.java84 for (String email : VALID_EMAILS) { in testEmailValidator()
85 assertTrue(email + " should be a valid email address", validator.isValid(email)); in testEmailValidator()
88 for (String email : INVALID_EMAILS) { in testEmailValidator()
89 assertFalse(email + " should not be a valid email address", validator.isValid(email)); in testEmailValidator()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DUsimPhoneBookManager.java201 File email = files.get(USIM_EFEMAIL_TAG); in readEmailFileAndWait()
202 if (email != null) { in readEmailFileAndWait()
210 if (email.getParentTag() == USIM_TYPE2_TAG) { in readEmailFileAndWait()
223 log("EF_EMAIL order in PBR record: " + email.getIndex()); in readEmailFileAndWait()
226 int emailEfid = email.getEfid(); in readEmailFileAndWait()
262 if (email.getParentTag() == USIM_TYPE2_TAG && mIapFileRecord != null) { in readEmailFileAndWait()
313 String email = readEmailRecord(i); in buildType1EmailList() local
315 if (email == null || email.equals("")) { in buildType1EmailList()
344 emailList.add(email); in buildType1EmailList()
387 String email = readEmailRecord(emailRecId - 1); in buildType2EmailList() local
[all …]
/frameworks/base/core/java/android/net/
DMailTo.java73 Uri email = Uri.parse(noScheme); in parse() local
77 String query = email.getQuery(); in parse()
94 String address = email.getPath(); in parse()
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
DBluetoothMapBmessageBuilder.java129 List<EmailData> email = vcard.getEmailList(); in buildVcard() local
141 if (email != null && email.size() > 0) { in buildVcard()
142 mBmsg.append(VCARD_EMAIL).append(email.get(0).getAddress()).append(CRLF); in buildVcard()
/frameworks/base/docs/html/distribute/tools/
Dopen-distribution.jd69 an application via email.
74 An easy and quick way to release your apps is to send them to users by email.
75 To do this, you prepare the app for release, attach it to an email, and send
76 it to a user. When the user open your email on their Android-powered device,
78 Now</strong> button in the email message (see Figure 1). Users can install
83 Distributing apps through email is convenient if you’re sending them to a few
/frameworks/base/docs/html/training/contacts-provider/
Dindex.jd77 such as phone numbers and email addresses. You can retrieve all details, or you can
78 retrieve details of a specific type, such as all email addresses.
95 email address, the dialog displays an action button for the default email app.
Dmodify-data.jd99 If you already have details for the contact, such as a phone number or email address, you can
105 /* Assumes EditText fields in your UI contain an email address
109 private EditText mEmailAddress = (EditText) findViewById(R.id.email);
116 // Inserts an email address
119 * In this example, sets the email type to be a work email.
120 * You can set other email types as necessary.
283 {@link android.content.Intent#ACTION_INSERT_OR_EDIT}. For example, an email client app could
284 allow users to add an incoming email address to a new contact, or add it as an additional
Dretrieve-details.jd43 This lesson shows how to retrieve detail data for a contact, such as email addresses, phone
46 such as email addresses.
157 groups all email rows together, all phone rows together, and so forth. For example:
322 be sure to retrieve the <code>_ID</code> column. For example, to retrieve email data, define the
337 defined in the class {@link android.provider.ContactsContract.Data}. Using the email-specific
373 For example, for email data you can sort on
Dretrieve-names.jd62 data such as an email address. For example, this technique allows you to list all of the
63 contacts whose email address matches the search string.
68 including name, phone number, street address, email address, and so forth. For example,
582 The subclasses have names that indicate their data type; for example, the subclass for email
584 type for email data is defined by the constant
630 email addresses, use the column
644 type value for email data is
659 * and email MIME type
663 * Searches for an email address
717 the search string, including name, email address, postal address, phone number, and so forth.
/frameworks/base/docs/html/about/versions/
Dandroid-2.0-highlights.jd73 <img src="{@docRoot}sdk/images/2.0/email-inbox.png" class="screenshot" alt="" /><br/>
87 <li>Multiple accounts can be added to a device for email and contact
94 contact photo and select to call, SMS, or email the person. Other applications
106 mode (for example, phone, SMS, email).</li>
114 <li>Combined inbox to browse email from multiple accounts in one page.</li>
/frameworks/base/docs/html/training/snackbar/
Daction.jd41 button. For example, an email app might put an <em>undo</em> button on its
42 "email archived" message; if the user clicks the <em>undo</em> button, the
43 app takes the email back out of the archive.
/frameworks/opt/vcard/tests/res/raw/
Dv21_x_param.vcf7 EMAIL;X-cUstomPrOperty:email@example.com
/frameworks/base/docs/html/design/patterns/
Dswipe-views.jd35 …n consecutive email messages using the swipe gesture. If a view contains content that exceeds the …
40 …Scrolling within a wide email message using the swipe gesture before navigating to the next messag…
/frameworks/base/services/core/java/com/android/server/notification/
DCalendarTracker.java172 private boolean meetsAttendee(EventInfo filter, int eventId, String email) {
175 String[] selectionArgs = { Integer.toString(eventId), email };
197 final boolean eventMeets = rowEventId == eventId && Objects.equals(rowEmail, email)
/frameworks/base/docs/html/distribute/engage/
Dbeta.jd42 <strong>Closed beta using email addresses —</strong> If you want to
44 now set up a closed beta using lists of individual email addresses which
74 include a feedback channel or provide the option to send feedback by email,
Ddeep-linking.jd17 your app from a search suggestion, or go back to your email reminders in Google Now. </p>
51 can re-engage your users via structured data markup delivered in email notifications.</p>
Dapp-updates.jd22 should users lapse. Notification, email, and social media are several
/frameworks/base/docs/html-intl/intl/in/guide/components/
Dfundamentals.jd96 aplikasi email mungkin memiliki satu aktivitas yang menampilkan daftar email
97 baru, aktivitas lain untuk menulis email, dan aktivitas satunya lagi untuk membaca email. Walaupun
98 semua aktivitas bekerja sama untuk membentuk pengalaman pengguna yang kohesif dalam aplikasi email,
100 salah satu aktivitas ini (jika aplikasi email mengizinkannya). Misalnya, aplikasi kamera bisa memul…
101 aktivitas dalam aplikasi email yang membuat email baru agar pengguna bisa berbagi gambar.
344 <p>Misalnya, jika Anda telah membangun aplikasi email dengan aktivitas untuk menulis email baru, An…
345 mendeklarasikan filter intent untuk merespons intent "kirim" (untuk mengirim email baru) seperti in…
364 email.</p>
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DIccProvider.java528 for (String email: emails) { in loadRecord()
529 if (DBG) log("Adding email:" + email); in loadRecord()
530 emailString.append(email); in loadRecord()
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dactivity_task_design.jd153 of applications that may include email, calendar, browser, maps, text
318 contacts can continue, by choosing an email address, to an email
320 from. Contacts, email and picture gallery are all separate
343 View a YouTube video and share it by email with someone else
372 address in an email starts the Maps activity as a new task, and
373 choosing a link in an email starts the Browser activity as a new
421 following figure, the user starts email by touching the Email icon in
422 the Home screen, which displays a list of email messages. The user
682 figure. If the device has two email applications set up, when a user
683 touches a mailto: email address on a web page, the result is an
[all …]
/frameworks/base/docs/html/distribute/googleplay/
Dstart.jd74 &mdash; name, email address, and so on. You can modify this information
89 <li>When your registration is verified, you’ll be notified at the email
/frameworks/opt/chips/tests/src/com/android/ex/chips/
DChipsTest.java1011 private void testCreateReplacementChipOriginalText(final String email) { in testCreateReplacementChipOriginalText() argument
1013 attemptCreateReplacementChipOriginalText(email.trim()); in testCreateReplacementChipOriginalText()
1015 attemptCreateReplacementChipOriginalText(email.trim() + " "); in testCreateReplacementChipOriginalText()
1018 private void attemptCreateReplacementChipOriginalText(final String email) { in attemptCreateReplacementChipOriginalText() argument
1021 view.setText(email); in attemptCreateReplacementChipOriginalText()
1022 view.mPendingChips.add(email); in attemptCreateReplacementChipOriginalText()
1024 view.createReplacementChip(0, email.length(), view.getText(), true); in attemptCreateReplacementChipOriginalText()
1026 assertEquals(email.replaceAll(",\\s*$", ""), in attemptCreateReplacementChipOriginalText()
/frameworks/base/docs/html/training/implementing-navigation/
Ddescendant.jd55email or pick a photo attachment, you generally don't want the user to return to this activity if …
/frameworks/base/docs/html/training/in-app-billing/
Dtest-iab-app.jd34 …er account profile. To create a test account, simply enter a valid Google email address. Users wit…
40 …ils, then in the <strong>License Testing</strong> section, add the Google email addresses for your…

123456