0

開始ボタンを押すとmp3ファイルの再生が開始されますが、停止ボタンを押しても停止しません。いくつかの例を試しましたが、正確な解決策を見つけることができませんでした

public Button play;
public Button stop;
 MediaPlayer mp;

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

    play = (Button)findViewById(R.id.played);
    stop = (Button)findViewById(R.id.stopped);
    play.setOnClickListener(this);
    stop.setOnClickListener(this);
}

public void onClick(View v) </br>
{
    mp = MediaPlayer.create(this,R.raw.you);
    if(v==play && !mp.isPlaying()){
        mp.start();
    }
//below part of code executes but doesn't stop the player
    else if (v==stop){
        mp.stop();
        mp.release();               
    }
}
4

2 に答える 2

0

このようにしてください:

public void onClick(View v) {

        switch (v.getId()) {
        case  R.id.played:
            if(mp==null || !mp.isPlaying()){
                mp = MediaPlayer.create(this,R.raw.you);
                mp.start();
            }
            break;
        case R.id.stopped:
            if(mp!=null && mp.isPlaying()){
                mp.stop();  
                mp.release(); 
            }
            break
        default:
            break;
        }
    }
于 2013-08-26T09:02:32.457 に答える