如何以编程方式更改 Android 中的铃声?
我正在尝试编写一个应用程序(除其他外)将根据用户的位置更改用户的铃声。
但是,我在应用程序中设置手机铃声时遇到困难。我已经能够显示手机铃声列表,并且一直在使用以下代码来尝试设置铃声:
RingtoneManager.setActualDefaultRingtoneUri(applicationContext,
RingtoneManager.TYPE_RINGTONE,
MediaStore.Audio.Media.getContentUriForPath(settings.getRingtoneURI()));
Settings.System.putString(c.getContentResolver(), Settings.System.RINGTONE,
settings.getRingtoneURI());
其中 settings.getRingtoneURI() 返回一个包含所需铃声 URI 的字符串。
当我运行它时,我没有收到任何错误,但铃声没有改变。
有什么建议吗?
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.getContentResolver(), 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的代码选择来自手机的任何随机铃声作为来电。
The below code choose any random tone from the mobile for Incoming call.