I have save file in sdcard/media/audio/ringtones folder. That file will appear in list of ringtone selection from settings/sound/phone Ringtone.

But i want to set that file as a ringtone from my code.

  File k = new File(path, filename);

  ContentValues values = new ContentValues();
  values.put(MediaStore.MediaColumns.DATA, k.getAbsolutePath());
  values.put(MediaStore.MediaColumns.TITLE, "TwiAppclip");
  values.put(MediaStore.MediaColumns.MIME_TYPE, "audio/*");
  values.put(MediaStore.Audio.Media.ARTIST, "cssounds ");
  values.put(MediaStore.Audio.Media.IS_RINGTONE, true);
  values.put(MediaStore.Audio.Media.IS_NOTIFICATION, false);
  values.put(MediaStore.Audio.Media.IS_ALARM, false);
  values.put(MediaStore.Audio.Media.IS_MUSIC, false);

  Uri uri = MediaStore.Audio.Media.getContentUriForPath(k
       .getAbsolutePath());
  Uri newUri = getApplicationContext().getContentResolver().insert(uri, values);

  RingtoneManager.setActualDefaultRingtoneUri(getApplicationContext(),
      RingtoneManager.TYPE_RINGTONE, newUri);

here uri m getting But i got newUri = null. ithink thats why its is not setting as ringtone.

Anyone know where is the problem? how do i get newUri proper.?

link|improve this question

35% accept rate
feedback

2 Answers

up vote 5 down vote accepted

I found solution at last

audio is set as roigtone only one time but solution to this problem is, If you try running the same code again, you'll be trying to shove a duplicate entry in MediaStore's table, and the SQLite database won't allow you. You have to either rename your file and add another instance of it, or go in, remove the entry, and then try again. So i remove that entry every time and then insert will work fine..

    Uri uri = MediaStore.Audio.Media.getContentUriForPath(k.getAbsolutePath());

    getContentResolver().delete(uri, MediaStore.MediaColumns.DATA + "=\"" + k.getAbsolutePath() + "\"", null);

    Uri newUri = getContentResolver().insert(uri, values);

    RingtoneManager.setActualDefaultRingtoneUri(
      activity.this,
      RingtoneManager.TYPE_RINGTONE,
      newUri
    );

now m getting newUri object every time. it will not null. Hope it will help.

link|improve this answer
Genius! Thanks, I've been searching all over for the syntax on how to properly query for a duplicate. – Nick Mar 25 at 20:43
I LOVE YOU!!!!!!!!!!!!!!!!!!!!!!! – Aziz Apr 3 at 5:57
Thanks man. That was great. I was looking for this for weeks and u know what. The catch block catches this exception but exception variable is null. I had no clue it could be this issue. Thanks :D – KKD May 3 at 5:44
feedback

RingtoneManager .setActualDefaultRingtoneUri( Context, RingtoneManager.TYPE_RINGTONE, Uri .parse("Media file uri"));

I think this will solve ur problem.

link|improve this answer
I don't think you got the question. – KKD May 2 at 11:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.