如果我尝试将位于我的SD卡中的铃声分配给特定联系人。它工作得很好,但问题是铃声分配给所有联系人,而不是特定联系人。
这是我的代码: -
((ListView) v.findViewById(R.id.contact_list)).setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
ContactModel contactModel = (ContactModel) adapterView.getItemAtPosition(i);
AudioModel audioModel = (AudioModel) getArguments().getSerializable("AudioModel");
ContentValues values = new ContentValues();
String username = contactModel.getName();
Log.e("SYNC", "setting ringtone for " + username);
ContentResolver resolver = getActivity().getContentResolver();
File root = Environment.getExternalStorageDirectory();
Log.e("test", "ringtone checkpoint name here: beautiful ");
File file = new File(audioModel.getPath());
if(file.exists()) {
Log.e("test", "ringtone checkpoint if file exists");
Uri oldUri = MediaStore.Audio.Media.getContentUriForPath(file.getAbsolutePath());
resolver.delete(oldUri, MediaStore.MediaColumns.DATA + "=\"" + file.getAbsolutePath() + "\"", null);
Uri contactUri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, contactModel.getContact_id());
values.put(MediaStore.MediaColumns.DATA, file.getAbsolutePath());
values.put(MediaStore.MediaColumns.TITLE, "Beautiful");
values.put(MediaStore.MediaColumns.MIME_TYPE, "audio/mp3");
values.put(MediaStore.Audio.Media.IS_RINGTONE, true);
Uri uri = MediaStore.Audio.Media.getContentUriForPath(file.getAbsolutePath());
Uri newUri = resolver.insert(uri, values);
String uriString = newUri.toString();
values.put(ContactsContract.Contacts.CUSTOM_RINGTONE, uriString);
Log.e("Uri String for " + ContactsContract.Contacts.CONTENT_URI, uriString);
long updated = resolver.update(contactUri, values,null, null);
Toast.makeText(getActivity(), "Updated : " + updated, Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getActivity(), "File does not exist", Toast.LENGTH_LONG).show();
}
}
});
如果我正在使用此代码,它正在运行,但是铃声被分配给所有联系人而不是一个。
resolver.update(ContactsContract.Contacts.CONTENT_URI, values,null, null);
但是当我使用这段代码时,它无效。
Uri contactUri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, contactModel.getContact_id());
resolver.update(contactUri, values,null, null);
答案 0 :(得分:0)
您的更新中没有任何where子句,因此它会更新所有联系人。这就是两个最终参数 - where子句和它的值数组。
答案 1 :(得分:0)
根据这个问题,我实现了如何为联系人设置铃声,我发布了答案here