【发布时间】:2023-03-28 09:56:01
【问题描述】:
我试图在图像(ImageView/Button)点击时播放点击声音,我看到了一个example here。我也试过用这个:
profile_pick.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
v.playSoundEffect(android.view.SoundEffectConstants.CLICK);
Intent i=new Intent(getApplicationContext(),Profile_pic.class);
startActivity(i);
overridePendingTransition(R.anim.animation,R.anim.animation2);
}
});
但它不起作用。谁能建议如何做到这一点?
(添加原始声音不是一个好主意,所以我更喜欢使用使用系统声音...)
【问题讨论】: