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 70 public class ContactSaveService extends IntentService {
71 private static final String TAG = "ContactSaveService";
151 public ContactSaveService() {
160 + " receive callback from " + ContactSaveService.class.getName());
227 context, ContactSaveService.class);
228 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
230 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
231 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
232 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
235 ContactSaveService.EXTRA_CONTENT_VALUES, values)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 18 import com.android.contacts.ContactSaveService;
94 activity.startService(ContactSaveService.createNewGroupIntent(activity,
ContactDeletionInteraction.java 19 import com.android.contacts.ContactSaveService;
319 mContext.startService(ContactSaveService.createDeleteContactIntent(mContext, contactUri));

Completed in 124 milliseconds