android_tv_metro
android_tv_metro copied to clipboard
view.playSoundEffect(5);
报错:unknown effect id 5 not defined in android.view.SoundEffectConstants
public static void playKeySound(View view, int soundKey) {
if (null != view) {
if (soundKey == SOUND_KEYSTONE_KEY) {
view.playSoundEffect(SoundEffectConstants.NAVIGATION_DOWN);
} else if (soundKey == SOUND_ERROR_KEY) {
view.playSoundEffect(5);
}
}
}`
the soundKey==SOUND_ERROR_KEY{view.playSoundEffect(5),How to deal with it? thank you}