How to set ringtone in Android from my activity?
Finally, I managed to set the default ringtone to one that i downloaded. The download code is not included below, only what was needed to set it as default ringtone. File k = new File(path, “mysong.mp3”); // path is a file to /sdcard/media/ringtone ContentValues values = new ContentValues(); values.put(MediaStore.MediaColumns.DATA, k.getAbsolutePath()); values.put(MediaStore.MediaColumns.TITLE, “My Song title”); values.put(MediaStore.MediaColumns.SIZE, … Read more