I have an android app that allows users to set sounds as ringtones, notifications, or alarms. The sounds are saved to the sdcard and show up in the sound settings as the set ringtone, notification, or alarm but if I reboot the phone or mount the sdcard then unmount it the sounds no longer show in the sound list in the phone settings. I am using the correct code (I think) to save my sounds from the app and set them as the default sound so I don't know what the issue is. My users are experiencing the same issue. Here is my code. Please help!
public boolean setAsTone(int ressound, String filename, String toneType) {
Log.v("File Name", "" + filename + "SOUNDFX");
Log.v("Tone Type", "" + toneType);
byte[] buffer = null;
InputStream fIn = getBaseContext().getResources().openRawResource(ressound);
int size = 0;
try {
size = fIn.available();
buffer = new byte[size];
fIn.read(buffer);
fIn.close();
} catch (IOException e) {
return false;
}
switch (Integer.parseInt(filename)) {
}
if (toneType.contains(getString(R.string.ringtone))) {
path = (Environment.getExternalStorageDirectory()+"/media/audio/"
+ getString(R.string.ringtone).toLowerCase() + "/");
Log.v("Path", "" + path);
} else if (toneType.contains(getString(R.string.notification))) {
path = (Environment.getExternalStorageDirectory()+"/media/audio/"
+ getString(R.string.notification).toLowerCase() + "/");
Log.v("Path", "" + path);
} else if (toneType.contains(getString(R.string.alarm))) {
path = (Environment.getExternalStorageDirectory()+"/media/audio/"
+ getString(R.string.alarm).toLowerCase() + "/");
Log.v("Path", "" + path);
}
boolean exists = (new File(path)).exists();
if (!exists) {
new File(path).mkdirs();
}
FileOutputStream save;
try {
save = new FileOutputStream(path + filename + "SOUNDFX");
save.write(buffer);
save.flush();
save.close();
} catch (FileNotFoundException e) {
return false;
} catch (IOException e) {
return false;
}
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,
Uri.parse("file://" + path + filename + "SOUNDFX")));
File ringtoneFile = new File(path, filename + "SOUNDFX");
ContentValues values = new ContentValues();
values.put(MediaStore.MediaColumns.DATA, ringtoneFile.getAbsolutePath());
values.put(MediaStore.MediaColumns.TITLE, filename + "SOUNDFX");
values.put(MediaStore.MediaColumns.MIME_TYPE, "audio/mp3");
values.put(MediaStore.Audio.Media.ARTIST, "SOUNDFX");
Log.v("getAbsolute Path", "" + ringtoneFile.getAbsolutePath());
if (toneType.contains(getString(R.string.ringtone))) {
values.put(MediaStore.Audio.Media.IS_RINGTONE, true);
values.put(MediaStore.Audio.Media.IS_NOTIFICATION, false);
values.put(MediaStore.Audio.Media.IS_ALARM, false);
type = RingtoneManager.TYPE_RINGTONE;
Log.v("Ring Type", "" + type);
} else if (toneType.contains(getString(R.string.notification))) {
values.put(MediaStore.Audio.Media.IS_RINGTONE, false);
values.put(MediaStore.Audio.Media.IS_NOTIFICATION, true);
values.put(MediaStore.Audio.Media.IS_ALARM, false);
type = RingtoneManager.TYPE_NOTIFICATION;
Log.v("Ring Type", "" + type);
} else if (toneType.contains(getString(R.string.alarm))) {
values.put(MediaStore.Audio.Media.IS_RINGTONE, false);
values.put(MediaStore.Audio.Media.IS_NOTIFICATION, false);
values.put(MediaStore.Audio.Media.IS_ALARM, true);
type = RingtoneManager.TYPE_ALARM;
Log.v("Ring Type", "" + type);
}
values.put(MediaStore.Audio.Media.IS_MUSIC, true);
// Insert it into the database
Uri ringtoneUri = null;
Uri uri = MediaStore.Audio.Media.getContentUriForPath(ringtoneFile
.getAbsolutePath());
Log.v("Uri Path",""+uri);
getContentResolver().delete(
uri,
MediaStore.MediaColumns.DATA + "=\""
+ ringtoneFile.getAbsolutePath() + "\"", null);
ringtoneUri = this.getContentResolver().insert(uri, values);
Log.v("Ringtone Uri", "" + ringtoneUri);
Log.v("Final Ring Type", "" + type);
RingtoneManager.setActualDefaultRingtoneUri(getApplicationContext(),
type, ringtoneUri);
RingtoneManager.getActualDefaultRingtoneUri(getApplicationContext(), type);
return true;
}