如何在Android上点击按钮播放声音片段?

时间:2014-09-11 11:10:41

标签: android button onclick media-player audio

我尝试按照此链接from Stackoverflow

点击我的按钮点击声音片段

现在,我无法成功播放声音片段。我在这里有一个简单的按钮点击事件,它使按钮能够播放声音。任何人都可以帮我找出这里的错误吗?

这是我正在使用的按钮点击监听器

MediaPlayer mp;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    final Button btn = (Button)findViewById(R.id.button1);
    btn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            mp = MediaPlayer.create(MainActivity.this, R.raw.sc);
            mp.setLooping(true);
            mp.start();
            btn.setSoundEffectsEnabled(true);
            mp.release();
        }
    });
}

这是XML代码

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:soundEffectsEnabled="true"
        android:layout_marginTop="41dp"
        android:text="Button" />

</RelativeLayout>

提前致谢

2 个答案:

答案 0 :(得分:2)

如果你播放声音片段,那么

    MediaPlayer mp = MediaPlayer.create(this, R.raw.buttonclick);
    mp.setLooping(true);
    mp.setOnCompletionListener(this);
    mp.start();

尝试这个并实现方法

@Override
public void onCompletion(MediaPlayer mp) {
    mp.stop();
    mp.release();
}

答案 1 :(得分:2)

删除行。

mp.release();

习惯了。

Releases resources associated with this MediaPlayer object. 
It is considered good practice to call this method when you're done 
using the MediaPlayer