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