在android中以编程方式删除铃声

时间:2012-12-20 10:55:18

标签: android title ringtone

我知道以编程方式插入铃声, 但我想知道从系统铃声列表中删除特定铃声。 我所知道的是铃声的标题。

我搜索了很多关于它的信息,但不幸的是,找不到任何方法来达到我想要的效果。

请指导我使用铃声标题删除铃声的方式。

1 个答案:

答案 0 :(得分:5)

尝试从MediaStore.Audio.Media

删除铃声
Uri uri = MediaStore.Audio.Media.getContentUriForPath(ringtone_path);  
int roweffected = getContentResolver().delete(uri,  
       MediaStore.MediaColumns.DATA + "=\"" + ringtone_path + "\"",  
       null);

if(roweffected>0){
  //ringtone deleted
}
else{
  //ringtone not deleted
}

编辑: 您也可以从列表中删除RINGTONE:

ContentValues cv = new ContentValues();
Uri uri = MediaStore.Audio.Media.getContentUriForPath(ringtone_path);
cv.put(MediaStore.Audio.Media.IS_RINGTONE, false);
cv.put(MediaStore.Audio.Media.IS_NOTIFICATION, false);
cv.put(MediaStore.Audio.Media.IS_ALARM, false);
cv.put(MediaStore.Audio.Media.IS_MUSIC, true);

int rowupdate = getContentResolver().update(uri,
       cv, MediaStore.MediaColumns.DATA + "=?",new String[] {ringtone_path});

if(rowupdate>0){
  //ringtone update
}
else{
  //ringtone not update
}