为什么在尝试使用声池时仍然出现此错误?

时间:2019-03-07 02:51:42

标签: android soundpool

我正在按照android文档创建一个声音池,它一直在给我这个奇怪的消息。我不知道为什么。消息显示:SoundPool中的SoundPool()无法应用于: 预期参数: 实际参数:

context:
android.content.Context
3  (int)


AudioManager.STREAM_MUSIC  (int)

0  (int)

public class SoundPool {

    private static SoundPool soundPool;
    private static int sound;

    public SoundPool(Context context) {
        soundPool = new SoundPool(3, AudioManager.STREAM_MUSIC, 0);

    }


}

1 个答案:

答案 0 :(得分:0)

您需要将定义的类从lrwxrwxrwx 1 root root 10 апр 10 2018 /opt/lampp/bin/php -> php-7.1.15 更改为SoundPool或其他名称,以避免与Android中的MySoundPool类冲突。

SoundPool