I am trying to play a sound with soundPool, but it gives me an error:
05-25 16:11:57.614: D/dalvikvm(275): Trying to load lib /system/lib/libsoundpool.so 0x0
05-25 16:11:57.623: D/dalvikvm(275): Added shared lib /system/lib/libsoundpool.so 0x0
05-25 16:11:57.633: D/AndroidRuntime(275): Shutting down VM
05-25 16:11:57.633: W/dalvikvm(275): threadid=3: thread exiting with uncaught exception (group=0x4001b188)
05-25 16:11:57.653: E/AndroidRuntime(275): Uncaught handler: thread main exiting due to uncaught exception
05-25 16:11:57.693: E/AndroidRuntime(275): java.lang.NoClassDefFoundError: com.balint.myapp.LowFreqActivity$1$1
05-25 16:11:57.693: E/AndroidRuntime(275): at com.balint.myapp.LowFreqActivity$1.onClick(LowFreqActivity.java:80)
This is my code:
public class LowFreqActivity extends Activity {
SoundPool soundPool;
int soundID;
boolean loaded = false;
RadioButton rb1_1, rb1_2, rb1_3, rb1_4, rb1_5, rb1_6, rb1_7, rb1_8, rb1_9, rb1_10, rb1_11;
RadioGroup radioGroup1, radioGroup2;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.lowfreq);
rb1_7 = (RadioButton)findViewById(R.id.radiobutton1_7);
rb1_7.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
soundPool = new SoundPool(10, AudioManager.STREAM_MUSIC, 0);
soundPool.setOnLoadCompleteListener(new OnLoadCompleteListener() { //error line
public void onLoadComplete(SoundPool soundPool, int sampleId, int status) {
loaded = true;
}
});
soundID = soundPool.load(LowFreqActivity.this, R.raw.sound_375, 1);
if (loaded) {
soundPool.play(soundID, 1.0f, 1.0f, 1, 0, 1f);
Log.d("Test", "Played sound");
Toast.makeText(LowFreqActivity.this, "played", Toast.LENGTH_SHORT).show();
}
}
});
}
}
The audiofiles are in the res/raw folder. Please help me figure out this problem.
EDIT: The error says it cannot find the libsoundpool.so in /system/lib. I checked the file explorer in eclipse and the file is there...