How can i use this
Ringtone tone = RingtoneManager.getRingtone(this, Uri.parse(uri));
to choose from Notification Sound? This works fine, but i can set a notification sount from phone Ringtones.
Update:
private void update_notifytone (String uri, boolean save) {
mNotifyTone = uri;
if (uri == null) return;
Ringtone tone = RingtoneManager.getRingtone(this, Uri.parse(uri));
if (tone != null)
mPrefNotifyTone.setSummary(tone.getTitle(this));
if (save)
update_column(ProfileModel.ProfileColumns.NOTIFYTONE, mNotifyTone);
}
Thanks