Eclipse soundpool loading error

后端 未结 2 1148
一整个雨季
一整个雨季 2021-01-11 17:53

I am trying to develop a library management software for android using Eclipse. So far my application is running fine (in eclipse emulator), but I am getting some errors whi

相关标签:
2条回答
  • 2021-01-11 18:04

    Basically, don't worry about those errors. They're not directly caused by your application, and they have no visible impact. It's just noise in the log.

    The first one is given simply because the emulator can't find the default "I hit a button" sound. Most likely, it was not included in the emulator image. Nevertheless, it will try to play the sound when you hit a button. You can probably stop this from happening by going into the AVD's settings app (in the emulator) and disabling the option to play sounds for UI events and keyboard presses.

    The second just means that it had a problem loading {some} hardware module. This could be something to do with GPU support, sdcard handling, basically anything. Given that there are many hardware differences between an emulator and an actual device, this isn't very surprising. Again, if it isn't causing any problems, don't worry about it. My AVDs show the same message, and I've yet to see any issues.

    0 讨论(0)
  • 2021-01-11 18:18

    To get rid of these media errors you need to go to settings section at emulator device and turn the sounds off, the touch sounds, unlock sounds and other.

    0 讨论(0)
提交回复
热议问题