2

こんにちは、私のアプリは音楽プレーヤーのリストを生成し、ユーザーがクリックすると音楽プレーヤーを再生しますが、画面をスワイプして次の曲を再生すると、曲は再生されません...ここにそのコードがあります.音楽が停止します(最初に停止するように設定しているため)が、その後何も起こりません

public class NowPlaying extends Activity implements Serializable {
     MediaPlayer mp =new MediaPlayer();
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.now_playing);
        Intent i = getIntent();
        final int position=i.getIntExtra("Data2", 0);
        final ArrayList<SongDetails> songs = getIntent().getParcelableArrayListExtra("Data1"); 
        SongDetails songDetails = songs.get(position) ;
        Button bfake=(Button) findViewById(R.id.bFake);
        LinearLayout LL=(LinearLayout) findViewById(R.id.LL);
        Button Pause=(Button)findViewById(R.id.bPlayPause);
         Playservice(songs,position,0  );

         bfake.setOnTouchListener(new OnSwipeTouchListener()

         {
                public void onSwipeTop() {
                    mp.stop();
                    mp.release();
                }
                public void onSwipeRight() {
                    //mp.stop();
                    //mp.release();
                    Playservice(songs,position,-1  );
                }
                public void onSwipeLeft() {
                    //mp.stop();
                    //mp.release();
                    Playservice(songs,position,1  );

                }
                public void onSwipeBottom() {
                    mp.stop();
                    mp.release();
                }
            });

            LL.setOnTouchListener(new OnSwipeTouchListener() {
                public void onSwipeTop() {
                    mp.stop();
                    mp.release();
                }
                public void onSwipeRight() {
                    //mp.stop();
                    //mp.release();
                    Playservice(songs,position,-1  );
                }
                public void onSwipeLeft() {
                    //mp.stop();
                    //mp.release();
                    Playservice(songs,position,1  );
                }
                public void onSwipeBottom() {
                    mp.stop();
                    mp.release();
                }
            }); 

            Pause.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) 
            {
                mp.stop();
                mp.release();
            }
        });
    }
         private void Playservice( ArrayList<SongDetails> songs, int position, int i    ) {
             try {
                 String ab=songs.get(position+i).getPath2().toString();
                    if(mp.isPlaying())
                    {   mp.stop();
                        mp.release();
                    }

                    mp.reset();
                    mp.setDataSource(ab) ;
                    mp.prepare();
                    mp.start();

                } catch (IllegalArgumentException e) {

                    e.printStackTrace();
                } catch (SecurityException e) {

                    e.printStackTrace();
                } catch (IllegalStateException e) {

                    e.printStackTrace();
                } catch (IOException e) {

                    e.printStackTrace();

                }

    }

        }
4

3 に答える 3

2

問題は、MediaPlayerオブジェクトが解放された後にそれを再利用しようとしていることです。

mp.release() を削除します

if(mp.isPlaying())
                {   mp.stop();
                //    mp.release();
                }

onDestroy コールバックを使用して、前年のアクティビティが終了したら、メディア プレーヤーを解放します。

@Override
public void onDestroy(){
    super.onDestroy();
   if(mp !=null){
      if (mp.isPlaying()){
           mp.stop();
       }
      mp.release();
  }
}
于 2013-08-11T18:03:10.213 に答える
2

曲の変更中にメディア プレーヤーを離さないでください。

String ab=songs.get(position+i).getPath2().toString();
                if(mp.isPlaying())
                {   
                     mp.stop();

                }
于 2013-08-11T18:05:10.893 に答える