android_tv_metro icon indicating copy to clipboard operation
android_tv_metro copied to clipboard

view.playSoundEffect(5);

Open LcTerry opened this issue 8 years ago • 0 comments

报错:unknown effect id 5 not defined in android.view.SoundEffectConstantspublic 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}

LcTerry avatar Sep 27 '16 09:09 LcTerry