SoundPool doesn`t play sound after clicking several times
问题 When i click button plays sound on my app, but keep clicking for a while doesn`t play anymore. Maybe it is memory issue? Could you solve me my issue? Here is implemented play sound via SoundPool: when i click button i called play method: and play method works background thread private void play(int resId) { soundPool = buildBeforeAPI21();//TODO: refactor with deprecated constructor soundPool.load(activity, Integer.parseInt(resId), 1); } public SoundPool buildBeforeAPI21() { if (soundPool ==