Home | History | Annotate | Download | only in contacts

Lines Matching full:serviceintent

285         Intent serviceIntent = new Intent(
287 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
289 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
290 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
291 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
293 serviceIntent.putParcelableArrayListExtra(
301 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
302 return serviceIntent;
376 Intent serviceIntent = new Intent(
378 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT);
379 serviceIntent.putExtra(EXTRA_CONTACT_STATE, (Parcelable) state);
380 serviceIntent.putExtra(EXTRA_SAVE_IS_PROFILE, isProfile);
381 serviceIntent.putExtra(EXTRA_SAVE_MODE, saveMode);
384 serviceIntent.putExtra(EXTRA_UPDATED_PHOTOS, (Parcelable) updatedPhotos);
397 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
399 return serviceIntent;
672 Intent serviceIntent = new Intent(context, ContactSaveService.class);
673 serviceIntent.setAction(ContactSaveService.ACTION_CREATE_GROUP);
674 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
675 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
676 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
677 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_LABEL, label);
678 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACTS_TO_ADD, rawContactsToAdd);
684 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
686 return serviceIntent;
735 Intent serviceIntent = new Intent(context, ContactSaveService.class);
736 serviceIntent.setAction(ContactSaveService.ACTION_RENAME_GROUP);
737 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_ID, groupId);
738 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_LABEL, newLabel);
743 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
745 return serviceIntent;
771 Intent serviceIntent = new Intent(context, ContactSaveService.class);
772 serviceIntent.setAction(ContactSaveService.ACTION_DELETE_GROUP);
773 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_ID, groupId);
774 return serviceIntent;
806 Intent serviceIntent = new Intent(context, ContactSaveService.class);
807 serviceIntent.setAction(ContactSaveService.ACTION_UPDATE_GROUP);
808 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_ID, groupId);
809 serviceIntent.putExtra(ContactSaveService.EXTRA_GROUP_LABEL, newLabel);
810 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACTS_TO_ADD, rawContactsToAdd);
811 serviceIntent.putExtra(ContactSaveService.EXTRA_RAW_CONTACTS_TO_REMOVE,
817 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
819 return serviceIntent;
924 Intent serviceIntent = new Intent(context, ContactSaveService.class);
925 serviceIntent.setAction(ContactSaveService.ACTION_SET_STARRED);
926 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
927 serviceIntent.putExtra(ContactSaveService.EXTRA_STARRED_FLAG, value);
929 return serviceIntent;
969 Intent serviceIntent = new Intent(context, ContactSaveService.class);
970 serviceIntent.setAction(ContactSaveService.ACTION_SET_SEND_TO_VOICEMAIL);
971 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
972 serviceIntent.putExtra(ContactSaveService.EXTRA_SEND_TO_VOICEMAIL_FLAG, value);
974 return serviceIntent;
995 Intent serviceIntent = new Intent(context, ContactSaveService.class);
996 serviceIntent.setAction(ContactSaveService.ACTION_SET_RINGTONE);
997 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
998 serviceIntent.putExtra(ContactSaveService.EXTRA_CUSTOM_RINGTONE, value);
1000 return serviceIntent;
1019 Intent serviceIntent = new Intent(context, ContactSaveService.class);
1020 serviceIntent.setAction(ContactSaveService.ACTION_SET_SUPER_PRIMARY);
1021 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_ID, dataId);
1022 return serviceIntent;
1041 Intent serviceIntent = new Intent(context, ContactSaveService.class);
1042 serviceIntent.setAction(ContactSaveService.ACTION_CLEAR_PRIMARY);
1043 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_ID, dataId);
1044 return serviceIntent;
1067 Intent serviceIntent = new Intent(context, ContactSaveService.class);
1068 serviceIntent.setAction(ContactSaveService.ACTION_DELETE_CONTACT);
1069 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_URI, contactUri);
1070 return serviceIntent;
1078 Intent serviceIntent = new Intent(context, ContactSaveService.class);
1079 serviceIntent.setAction(ContactSaveService.ACTION_DELETE_MULTIPLE_CONTACTS);
1080 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_IDS, contactIds);
1081 return serviceIntent;
1121 Intent serviceIntent = new Intent(context, ContactSaveService.class);
1122 serviceIntent.setAction(ContactSaveService.ACTION_JOIN_CONTACTS);
1123 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_ID1, contactId1);
1124 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_ID2, contactId2);
1129 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
1131 return serviceIntent;
1139 Intent serviceIntent = new Intent(context, ContactSaveService.class);
1140 serviceIntent.setAction(ContactSaveService.ACTION_JOIN_SEVERAL_CONTACTS);
1141 serviceIntent.putExtra(ContactSaveService.EXTRA_CONTACT_IDS, contactIds);
1142 return serviceIntent;