我有以下代码…

public class GL2JNIActivity extends Activity implements View.OnTouchListener {
...
    @Override
protected void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    mView = new GL2JNIView(getApplication());
    mView.setOnTouchListener(this);
    Display display = getWindowManager().getDefaultDisplay();
    display.getSize(size);
    this.setVolumeControlStream(AudioManager.STREAM_MUSIC);
    lib.setContext(this);
    lib.setSoundPool(new SoundPool(10, AudioManager.STREAM_MUSIC, 0));
    lib.getSoundPool().setOnLoadCompleteListener(new OnLoadCompleteListener() {
        @Override
        public void onLoadComplete(SoundPool soundPool, int sampleId,
                int status) {
            lib.setLoaded(true);
        }
    });
    lib.setSoundID(lib.getSoundPool().load(this, R.raw.a, 1));
    lib.setAudioManager((AudioManager) getSystemService(AUDIO_SERVICE));
    setContentView(mView);
}

然后我在另一个类中使用JNI回调调用它…
public class GL2JNILib {
    ...
    public void playA() {
    //setSoundID(getSoundPool().load(context, R.raw.a, 1));
    float actualVolume = (float) audioManager
            .getStreamVolume(AudioManager.STREAM_MUSIC);
    float maxVolume = (float) audioManager
            .getStreamMaxVolume(AudioManager.STREAM_MUSIC);
    float volume = actualVolume / maxVolume;
    // Is the sound loaded already?
    if (loaded) {
        soundPool.play(soundID, volume, volume, 1, 0, 1f);
        Log.e("Test", "Played sound");
    }
}

}
不过,我想在oncreate中对该行进行注释,并取消对lib中的行的注释(这样我就可以更改注释)。但是当我这样做的时候,我看到了下面的错误…
e/wvmextractor(40):无法打开libwvm.so
它不会崩溃或其他什么,只是不播放声音。有什么想法吗?

最佳答案

你是偶然在三星的设备上测试的吗?众所周知,它们没有包含一些库,也没有针对低于5.0的版本对其进行个性化。

10-08 17:26