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

  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessor.java 31 public abstract class ContactAccessor {
34 * Static singleton instance of {@link ContactAccessor} holding the
37 private static ContactAccessor sInstance;
39 public static ContactAccessor getInstance() {
66 Class<? extends ContactAccessor> clazz =
67 Class.forName(className).asSubclass(ContactAccessor.class);
BusinessCardActivity.java 43 * An SDK-specific instance of {@link ContactAccessor}. The activity does not need
45 * encapsulated in the implementations of the ContactAccessor class.
47 private final ContactAccessor mContactAccessor = ContactAccessor.getInstance();
71 * of the SDK, which is why we delegate the creation of the intent to ContactAccessor.
80 * an opaque URI and allow the SDK-specific ContactAccessor to handle the URI accordingly.
ContactAccessorSdk3_4.java 28 * An implementation of {@link ContactAccessor} that uses legacy Contacts API.
41 public class ContactAccessorSdk3_4 extends ContactAccessor {
ContactAccessorSdk5.java 27 * An implementation of {@link ContactAccessor} that uses current Contacts API.
44 public class ContactAccessorSdk5 extends ContactAccessor {

Completed in 1387 milliseconds