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

  /packages/apps/Contacts/src/com/android/contacts/
ContactsActivity.java 35 implements ContactSaveService.Listener
79 ContactSaveService.registerListener(this);
85 ContactSaveService.unregisterListener(this);
ContactSaveService.java 74 public class ContactSaveService extends IntentService {
75 private static final String TAG = "ContactSaveService";
155 public ContactSaveService() {
164 + " receive callback from " + ContactSaveService.class.getName());
225 context, ContactSaveService.class);
226 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
228 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
229 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
230 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
233 ContactSaveService.EXTRA_CONTENT_VALUES, values)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 24 import com.android.contacts.ContactSaveService;
94 activity.startService(ContactSaveService.createNewGroupIntent(activity,
ContactDeletionInteraction.java 36 import com.android.contacts.ContactSaveService;
319 mContext.startService(ContactSaveService.createDeleteContactIntent(mContext, contactUri));

Completed in 139 milliseconds