为按钮点击播放音效 (CLICK/NAVIGATION_RIGHT) - Android

发布于 2024-09-27 10:00:08 字数 587 浏览 3 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷你仙 2024-10-04 10:00:08

试试这个:

button_flip.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            button_flip.playSoundEffect(0);
        }
    });

值 0 代表“咔嗒”声。您可以在此处查看更多值

Try this:

button_flip.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            button_flip.playSoundEffect(0);
        }
    });

The value 0 stands for CLICK sound. You can see more values here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文