我正在按照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);
}
}
答案 0 :(得分:0)
您需要将定义的类从lrwxrwxrwx 1 root root 10 апр 10 2018 /opt/lampp/bin/php -> php-7.1.15
更改为SoundPool
或其他名称,以避免与Android中的MySoundPool
类冲突。
SoundPool