HomeSort by relevance Sort by last modified time
    Searched refs:Contact (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
Contact.java 23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria")
    [all...]
SendMessageActivity.java 27 * Provides the UI for sharing a text with a {@link Contact}.
43 * The ID of the contact to share the text with.
69 // The contact ID will not be passed on when the user clicks on the app icon rather than any
70 // of the Direct Share icons. In this case, we show another dialog for selecting a contact.
71 if (mContactId == Contact.INVALID_ID) {
81 mContactId = data.getIntExtra(Contact.ID, Contact.INVALID_ID);
83 // Give up sharing the send_message if the user didn't choose a contact.
84 if (mContactId == Contact.INVALID_ID) {
106 mContactId = intent.getIntExtra(Contact.ID, Contact.INVALID_ID)
117 Contact contact = Contact.byId(mContactId); local
    [all...]
ContactViewBinder.java 22 * A simple utility to bind a {@link TextView} with a {@link Contact}.
27 * Binds the {@code textView} with the specified {@code contact}.
29 * @param contact The contact.
32 public static void bind(Contact contact, TextView textView) {
33 textView.setText(contact.getName());
34 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(contact.getIcon(), 0, 0, 0);
SampleChooserTargetService.java 42 for (int i = 0; i < Contact.CONTACTS.length; ++i) {
43 Contact contact = Contact.byId(i); local
45 extras.putInt(Contact.ID, i);
48 contact.getName(),
50 Icon.createWithResource(this, contact.getIcon()),
SelectContactActivity.java 32 * The dialog for selecting a contact to share the text with. This dialog is shown when the user
61 return Contact.CONTACTS.length;
66 return Contact.byId(i);
77 view = LayoutInflater.from(parent.getContext()).inflate(R.layout.contact, parent,
81 Contact contact = (Contact) getItem(i);
82 ContactViewBinder.bind(contact, textView);
92 data.putExtra(Contact.ID, i);
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
Contact.java 23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria")
    [all...]
SendMessageActivity.java 27 * Provides the UI for sharing a text with a {@link Contact}.
43 * The ID of the contact to share the text with.
69 // The contact ID will not be passed on when the user clicks on the app icon rather than any
70 // of the Direct Share icons. In this case, we show another dialog for selecting a contact.
71 if (mContactId == Contact.INVALID_ID) {
81 mContactId = data.getIntExtra(Contact.ID, Contact.INVALID_ID);
83 // Give up sharing the send_message if the user didn't choose a contact.
84 if (mContactId == Contact.INVALID_ID) {
106 mContactId = intent.getIntExtra(Contact.ID, Contact.INVALID_ID)
117 Contact contact = Contact.byId(mContactId); local
    [all...]
ContactViewBinder.java 22 * A simple utility to bind a {@link TextView} with a {@link Contact}.
27 * Binds the {@code textView} with the specified {@code contact}.
29 * @param contact The contact.
32 public static void bind(Contact contact, TextView textView) {
33 textView.setText(contact.getName());
34 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(contact.getIcon(), 0, 0, 0);
SampleChooserTargetService.java 42 for (int i = 0; i < Contact.CONTACTS.length; ++i) {
43 Contact contact = Contact.byId(i); local
45 extras.putInt(Contact.ID, i);
48 contact.getName(),
50 Icon.createWithResource(this, contact.getIcon()),
SelectContactActivity.java 32 * The dialog for selecting a contact to share the text with. This dialog is shown when the user
61 return Contact.CONTACTS.length;
66 return Contact.byId(i);
77 view = LayoutInflater.from(parent.getContext()).inflate(R.layout.contact, parent,
81 Contact contact = (Contact) getItem(i);
82 ContactViewBinder.bind(contact, textView);
92 data.putExtra(Contact.ID, i);
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
Contact.java 23 public class Contact {
28 public static final Contact[] CONTACTS = {
29 new Contact("Tereasa"),
30 new Contact("Chang"),
31 new Contact("Kory"),
32 new Contact("Clare"),
33 new Contact("Landon"),
34 new Contact("Kyle"),
35 new Contact("Deana"),
36 new Contact("Daria")
    [all...]
SendMessageActivity.java 27 * Provides the UI for sharing a text with a {@link Contact}.
43 * The ID of the contact to share the text with.
69 // The contact ID will not be passed on when the user clicks on the app icon rather than any
70 // of the Direct Share icons. In this case, we show another dialog for selecting a contact.
71 if (mContactId == Contact.INVALID_ID) {
81 mContactId = data.getIntExtra(Contact.ID, Contact.INVALID_ID);
83 // Give up sharing the send_message if the user didn't choose a contact.
84 if (mContactId == Contact.INVALID_ID) {
106 mContactId = intent.getIntExtra(Contact.ID, Contact.INVALID_ID)
117 Contact contact = Contact.byId(mContactId); local
    [all...]
ContactViewBinder.java 22 * A simple utility to bind a {@link TextView} with a {@link Contact}.
27 * Binds the {@code textView} with the specified {@code contact}.
29 * @param contact The contact.
32 public static void bind(Contact contact, TextView textView) {
33 textView.setText(contact.getName());
34 textView.setCompoundDrawablesRelativeWithIntrinsicBounds(contact.getIcon(), 0, 0, 0);
SampleChooserTargetService.java 42 for (int i = 0; i < Contact.CONTACTS.length; ++i) {
43 Contact contact = Contact.byId(i); local
45 extras.putInt(Contact.ID, i);
48 contact.getName(),
50 Icon.createWithResource(this, contact.getIcon()),
SelectContactActivity.java 32 * The dialog for selecting a contact to share the text with. This dialog is shown when the user
61 return Contact.CONTACTS.length;
66 return Contact.byId(i);
77 view = LayoutInflater.from(parent.getContext()).inflate(R.layout.contact, parent,
81 Contact contact = (Contact) getItem(i);
82 ContactViewBinder.bind(contact, textView);
92 data.putExtra(Contact.ID, i);
  /external/guice/examples/src/example/xml/
Contact.java 3 public class Contact {
Contacts.java 4 Iterable<Contact> findByName(String name);
FlashMemory.java 7 public Iterable<Contact> findByName(String name) {
SimCard.java 7 public Iterable<Contact> findByName(String name) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
ContactList.java 36 * List of contact headers.ContactLists are also maintained in a hashtable
42 public class ContactList extends SIPHeaderList<Contact> {
55 super(Contact.class, ContactHeader.NAME);
  /external/compiler-rt/
README.android 22 * Recent downstreaming on 2013/2/11: Synced to r197381 (Contact srhines for merge questions.)
23 * Recent downstreaming on 2013/8/8: Synced to r187889 (Contact srhines for merge questions.)
24 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.)
25 * Recent downstreaming on 2013/5/3: Synced to r180792 (Contact srhines for merge questions.)
26 * Recent downstreaming on 2013/3/18: Synced to r177337 (Contact srhines for merge questions.)
27 * Recent downstreaming on 2013/3/5: Synced to r176091 (Contact srhines for merge questions.)
28 * Recent downstreaming on 2013/1/8: Synced to r171802 (Contact srhines for merge questions.)
29 * Recent downstreaming on 2012/08/23: Synced to r162279 (Contact srhines for merge questions.)
30 * Recent downstreaming on 2012/08/15: Synced to r159129 (Contact sliao for merge questions.)
31 * Cherry-pick on 2012/07/27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines for merge questions.
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java 26 import com.android.contacts.model.Contact;
31 * Service that sends out a view notification for a contact. At the moment, this is only
46 contactLoader.registerListener(0, new OnLoadCompleteListener<Contact>() {
48 public void onLoadComplete(Loader<Contact> loader, Contact data) {
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorContacts.java 42 private static final Contact[] SIMPLE_CONTACTS = {
43 // US, contact with e164 number.
44 Contact.builder()
51 // US, contact with a non-e164 number.
52 Contact.builder()
60 Contact.builder()
67 // US and Australia, contact with a long name and multiple phone numbers.
68 Contact.builder()
76 // US, phone number shared with another contact and 2nd phone number with wait and pause.
77 Contact.builder(
    [all...]
  /external/mesa3d/docs/specs/
MESA_release_buffers.spec 9 Contact
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContactParser.java 28 import gov.nist.javax.sip.header.Contact;
38 * A parser for The SIP contact header.
45 public ContactParser(String contact) {
46 super(contact);
56 headerName(TokenTypes.CONTACT);
59 Contact contact = new Contact(); local
64 contact.setWildCardFlag(true);
66 super.parse(contact);
    [all...]

Completed in 1242 milliseconds

1 2 3 4 5 6