编程语言
首页 > 编程语言> > 在android中以编程方式删除铃声

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

作者:互联网

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

我搜索了很多关于它的信息,但不幸的是,找不到任何方法来实现我想要的.

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

解决方法:

尝试从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
}

标签:android,title,ringtone
来源: https://codeday.me/bug/20190620/1246292.html