Android中根据编号选择原始文件

发布于 2024-12-12 16:47:34 字数 245 浏览 1 评论 0原文

在该项目的 raw 文件夹中,有 43 个文件,名称范围为 note1 到 note43。当给定一定数量时,将使用媒体播放器播放音符,这需要使用 R.raw.filename。如何使用变量代替名称?例子:

int soundNum = 23;
String vaiableName = "note" + soundNum;
mp = MediaPlayer.create(this, R.raw.variableName);

In the raw folder of this project there are 43 files with names ranging from note1 to note43. When given a certain number that note is played using mediaplayer, which requires using R.raw.filename. How can I use a variable in place of the name? Example:

int soundNum = 23;
String vaiableName = "note" + soundNum;
mp = MediaPlayer.create(this, R.raw.variableName);

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

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

发布评论

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

评论(2

可是我不能没有你 2024-12-19 16:47:34

我想这就是您正在寻找的。

public static int getResId(String variableName, Class<?> c) {
    Field field = null;
    int resId = 0;
    try {
        field = c.getField(variableName);
        try {
            resId = field.getInt(null);
        } catch (Exception e) {
            e.printStackTrace();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return resId;
}

在你的情况下:

mp = MediaPlayer.create(this, getResId(vaiableName, R.raw.class));

我想我在不同的帖子或不同的网站上找到了这段代码,所以这些功劳归于他/她。我在很多 Android 项目中都使用它。

I think this is what you are looking for.

public static int getResId(String variableName, Class<?> c) {
    Field field = null;
    int resId = 0;
    try {
        field = c.getField(variableName);
        try {
            resId = field.getInt(null);
        } catch (Exception e) {
            e.printStackTrace();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return resId;
}

in your case:

mp = MediaPlayer.create(this, getResId(vaiableName, R.raw.class));

I think i found this piece of code in a different post here on SO or a different website, so those credits goes to him/her. I use it in a lot of my android projects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文