4

我正在尝试从android加载声音。声音在下res/raw/myownsound.wav。我知道我已经可以使用以下方法加载声音:

 soundPool.load(context, R.raw.myownsound, 1)

出于定制目的,我想使用以下方法加载它:

 soundPool.load("res/raw/myownsound", 1)

...但我收到以下错误:error loading res/raw/myownsound。我还尝试了以下方法:

 soundPool.loadSound("android.resource://upg.GraphismeBase/raw/myownsound", 1)

..但我也得到一个错误:error loading android.resource://upg.GraphismeBase/raw/myownsound

使用 soundPool.load(path, priority) 的正确方法是什么?

4

2 回答 2

6

在项目中创建文件夹结构

/assets/sounds/data/

然后在那里复制你的wav文件。

// Declare globally if needed
int mySoundId;
SoundPool soundPool = new SoundPool(5, AudioManager.STREAM_MUSIC, 0 );
AssetManager am = this.getAssets();

//Use in whatever method is used to load the sounds
try {
    mySoundId = soundPool.load(am.openFd("sounds/data/myownsound"), 1);
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

可以试试这个(不确定它的工作原理):

SoundPool mySoundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 0);
    int myAudioFile = getResId("claps", R.raw.class);
    try{
        mySoundPool.load(context.getActivity(),myAudioFile,1);
    } catch (Exception e){
        message = String.valueOf(e);
    }

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;
}
于 2012-08-23T14:55:16.017 回答
5

使用名为mContext. 它通过在运行时获取标识符 id 按名称加载资源。

int sound_id = mContext.getResources().getIdentifier("myownsound", "raw",
                                                     mContext.getPackageName());
soundPool.load(mContext, sound_id, 1);

它还可以加载drawables或xml文件,例如通过"raw"替换"drawable""xml"

于 2012-09-03T21:52:28.783 回答