Android按钮点击播放声音

时间:2013-04-25 14:59:01

标签: android media-player

我试图在按钮点击时多次播放两个不同的.wav文件。 我想播放sound1然后sound2然后sound1等等.. 这是代码片段。

    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_box);
        mp = MediaPlayer.create(Box.this, R.drawable.sound1);
        mp2 = MediaPlayer.create(Box.this, R.drawable.sound2);
        handler = new Handler();

        sButton.setOnClickListener(new View.OnClickListener() 
        {
            @Override
            public void onClick(View v) 
            {
                rounds = new Integer(et.getText().toString());
                for(int j = 0; j < rounds; j ++)
                {
                    f();
                    g();
                }

            }
        });
    }

    public void f()
    {
        cdt1 =  new CountDownTimer(5000, 1000)
        {
             public void onTick(long millisUntilFinished) 
             {

             }
             public void onFinish() 
             {   
                 mp.setLooping(true);
                 mp.setVolume(1.0f, 1.0f);
                 mp.start();
             }}.start();

    }
    public void g()
    {
        cdt =  new CountDownTimer(7000, 1000)
        {
             public void onTick(long millisUntilFinished) 
             {

             }
             public void onFinish() 
             {   
                 mp2.setLooping(true);
                 mp2.setVolume(1.0f, 1.0f);
                 mp2.start();
             }}.start();     
    }

每次播放声音时我都要重置它们吗? 提前谢谢。

1 个答案:

答案 0 :(得分:0)

你可以查看媒体播放器是否还在播放:

if (mp.isPlaying()) {
    //do nothing
} else {
    //start new sound
}