どうすればこれを使用できますか
Ringtone tone = RingtoneManager.getRingtone(this, Uri.parse(uri));
通知音から選択するには?これは正常に機能しますが、電話の着信音から通知音を設定できます。
アップデート:
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);
}
ありがとう