2

Button当用户点击Android 中的任何 ui 元素时,我没有听到通常听到的声音。

这是我的按钮 xml

<Button
    android:id="@+id/continue_btn"
    android:layout_width="280dp"
    android:layout_height="45dp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="82dp"
    android:background="@drawable/continue_btn_bg"
    android:shadowColor="#000000"
    android:shadowDx="-1"
    android:shadowDy="-1"
    android:shadowRadius="2"
    android:text="CONTINUE"
    android:textSize="20sp" />

当我按下这个按钮时,声音就没有了。触摸声音在 Android 设置中启用。

4

2 回答 2

4

利用 button.playSoundEffect(SoundEffectConstants.CLICK);

于 2013-04-23T12:28:06.627 回答
0

我体验过,一旦你附加了任何动作,系统就会自动播放声音。例如 xml 中的“onClick”。

于 2018-02-13T23:02:52.330 回答