Lines Matching refs:serviceIntent
231 Intent serviceIntent = new Intent(
233 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
235 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
236 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
237 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
239 serviceIntent.putParcelableArrayListExtra(
247 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
248 return serviceIntent;
318 Intent serviceIntent = new Intent(
320 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT);
321 serviceIntent.putExtra(EXTRA_CONTACT_STATE, (Parcelable) state);
322 serviceIntent.putExtra(EXTRA_SAVE_IS_PROFILE, isProfile);
324 serviceIntent.putExtra(EXTRA_UPDATED_PHOTOS, (Parcelable) updatedPhotos);
334 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
336 return serviceIntent;
551 Intent serviceIntent = new Intent(context, ContactSaveService.class);
552 serviceIntent.setAction(ContactSaveService.ACTION_CREATE_GROUP);
553 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
554 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
555 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
556 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_LABEL, label);
557 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACTS_TO_ADD, rawContactsToAdd);
563 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
565 return serviceIntent;
614 Intent serviceIntent = new Intent(context, ContactSaveService.class);
615 serviceIntent.setAction(ContactSaveService.ACTION_RENAME_GROUP);
616 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_ID, groupId);
617 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_LABEL, newLabel);
622 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
624 return serviceIntent;
650 Intent serviceIntent = new Intent(context, ContactSaveService.class);
651 serviceIntent.setAction(ContactSaveService.ACTION_DELETE_GROUP);
652 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_ID, groupId);
653 return serviceIntent;
685 Intent serviceIntent = new Intent(context, ContactSaveService.class);
686 serviceIntent.setAction(ContactSaveService.ACTION_UPDATE_GROUP);
687 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_ID, groupId);
688 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_LABEL, newLabel);
689 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACTS_TO_ADD, rawContactsToAdd);
690 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACTS_TO_REMOVE,
696 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
698 return serviceIntent;
803 Intent serviceIntent = new Intent(context, ContactSaveService.class);
804 serviceIntent.setAction(ContactSaveService.ACTION_SET_STARRED);
805 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
806 serviceIntent.putExtra(ContactSaveService.EXTRA_STARRED_FLAG, value);
808 return serviceIntent;
847 Intent serviceIntent = new Intent(context, ContactSaveService.class);
848 serviceIntent.setAction(ContactSaveService.ACTION_SET_SEND_TO_VOICEMAIL);
849 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
850 serviceIntent.putExtra(ContactSaveService.EXTRA_SEND_TO_VOICEMAIL_FLAG, value);
852 return serviceIntent;
873 Intent serviceIntent = new Intent(context, ContactSaveService.class);
874 serviceIntent.setAction(ContactSaveService.ACTION_SET_RINGTONE);
875 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
876 serviceIntent.putExtra(ContactSaveService.EXTRA_CUSTOM_RINGTONE, value);
878 return serviceIntent;
897 Intent serviceIntent = new Intent(context, ContactSaveService.class);
898 serviceIntent.setAction(ContactSaveService.ACTION_SET_SUPER_PRIMARY);
899 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_ID, dataId);
900 return serviceIntent;
919 Intent serviceIntent = new Intent(context, ContactSaveService.class);
920 serviceIntent.setAction(ContactSaveService.ACTION_CLEAR_PRIMARY);
921 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_ID, dataId);
922 return serviceIntent;
945 Intent serviceIntent = new Intent(context, ContactSaveService.class);
946 serviceIntent.setAction(ContactSaveService.ACTION_DELETE_CONTACT);
947 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
948 return serviceIntent;
967 Intent serviceIntent = new Intent(context, ContactSaveService.class);
968 serviceIntent.setAction(ContactSaveService.ACTION_JOIN_CONTACTS);
969 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_ID1, contactId1);
970 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_ID2, contactId2);
971 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_WRITABLE, contactWritable);
976 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
978 return serviceIntent;