为按钮点击播放音效 (CLICK/NAVIGATION_RIGHT) - Android
我正在尝试使用 playSoundEffect ()
方法在单击按钮时播放声音效果,但到目前为止,由于某种原因,它被证明非常困难。
我定义了以下内容。
<ImageButton android:id="@+id/Button_flip" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="FLIP!"
android:src="@drawable/flip" android:soundEffectsEnabled="true">
</ImageButton>
然后,
button_flip.playSoundEffect(android.view.SoundEffectConstants.CLICK);
在 onCreate() 方法中调用。但当我点击按钮时,我似乎无法让它发出声音。我在这里缺少什么?该文档没有什么可继续的。
我需要在 onClick() 方法中定义/调用吗?
任何帮助表示赞赏。
I'm trying to use the playSoundEffect ()
method to play a sound effect when a button is clicked, but so far its' proved very difficult for some reason.
I have defined the following.
<ImageButton android:id="@+id/Button_flip" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="FLIP!"
android:src="@drawable/flip" android:soundEffectsEnabled="true">
</ImageButton>
Then,
button_flip.playSoundEffect(android.view.SoundEffectConstants.CLICK);
is called in onCreate() method. But I cannot seem to get it to sound when I click the button. What am I missing here? The documentation has nothing much to go on.
Do I need to define/call in the onClick() method?
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
值 0 代表“咔嗒”声。您可以在此处查看更多值
Try this:
The value 0 stands for CLICK sound. You can see more values here