I'm trying to write an app that (among other things) will change the user's ringtone based on their location.
However, I'm having difficulty setting the ringtone of my phone from within my app. I've been able to display a list of the phone's ringtones, and have been using the following code to try and set the ringtone:
RingtoneManager.setActualDefaultRingtoneUri(applicationContext,
RingtoneManager.TYPE_RINGTONE,
MediaStore.Audio.Media.getContentUriForPath(settings.getRingtoneURI()));
Settings.System.putString(c.getContent开发者_Python百科Resolver(), Settings.System.RINGTONE,
settings.getRingtoneURI());
where settings.getRingtoneURI() returns a string with the URI of the desired ringtone.
When I run this, I receive no errors but the ringtone does not change.
Any advice?
The below code choose any random tone from the mobile for Incoming call.
RingtoneManager rm = new RingtoneManager(context);
Random random = new Random();
int i = rm.getRingtonePosition(RingtoneManager
.getActualDefaultRingtoneUri(context,
RingtoneManager.TYPE_RINGTONE));
MyApplication.APPLICATION_SHARED_PREFERENCE.edit()
.putInt(MyConstants.PHONE_RINGTONE_NUMBER, i).commit();
int chanegToneNumber;
Cursor cursor = rm.getCursor();
while (true) {
chanegToneNumber = random.nextInt(cursor.getCount());
if (chanegToneNumber != i)
break;
}
Log.d(TAG, "Tone: " + i);
Log.d(TAG, "Tone total: " + cursor.getCount());
while (cursor.moveToNext()) {
if (i == cursor.getInt(cursor
.getColumnIndex(MediaStore.MediaColumns._ID))) {
RingtoneManager.setActualDefaultRingtoneUri(context,
RingtoneManager.TYPE_RINGTONE,
rm.getRingtoneUri(chanegToneNumber));
break;
}
}
精彩评论