如何访问Android手机中的所有铃声列表?

发布于 2024-08-19 06:21:53 字数 56 浏览 7 评论 0原文

我想访问铃声列表。我怎样才能做到这一点?

稍后我想向库中添加/删除铃声?是否可以?

I want to access the ringtones list. How can I do that?

At later I want to add/ remove ring tones to library? Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

在巴黎塔顶看东京樱花 2024-08-26 06:21:53

您可以使用 RingtoneManager 来访问所有现有的铃声。

查看此问题的示例如何添加铃声。

You can use the RingtoneManager to access all the existing ringtones.

Have a look at this question for an example of how to add ringtones.

随梦而飞# 2024-08-26 06:21:53

尝试访问铃声文件

File racine = getDatabasePath("/system/media/audio/ringtones");

   final File[] liste = racine.listFiles();
    if (liste == null) return;
   final  int lng = liste.length;
    if (lng == 0) return;

Try this to access the ringtone file

File racine = getDatabasePath("/system/media/audio/ringtones");

   final File[] liste = racine.listFiles();
    if (liste == null) return;
   final  int lng = liste.length;
    if (lng == 0) return;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文