我开发了一个应用程序(1.5),2 activity
留在那里。在第一个活动中我放了background sound
。在第二个活动中我放了animal sound
。现在当我在模拟器中播放它工作正常但是当我在Android设备版本2.1中测试它时,我得到了强制关闭错误。
采取行动:
我无法确切地获得引发的错误,因为它只发生在设备中。
我习惯播放声音::
mPlayer = MediaPlayer.create(this, R.raw.touch_and_show);
mPlayer.start();
答案 0 :(得分:0)
可能是
mPlayer = MediaPlayer.create(this, R.raw.touch_and_show);
mPlayer.prepare();
mPlayer.start();