当用户点击Android中的任何ui元素Button
时,我听不到通常会听到的声音。
继承我的按钮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设置中启用了触摸声音。
答案 0 :(得分:3)
使用button.playSoundEffect(SoundEffectConstants.CLICK);
答案 1 :(得分:0)
我经历过,一旦你附加了任何动作,系统就会自动播放声音。例如xml中的“onClick”。