|
@@ -136,10 +136,21 @@ public class CustomPlayer implements MediaPlayer.OnErrorListener, MediaPlayer.On
|
|
|
if (isStoped) {
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
// release()会释放player、将player置空,所以这里需要判断一下
|
|
|
if (null != mPlayer && hasPrepared) {
|
|
|
+ LOG.i(TAG, "expectPosition:" + expectPosition);
|
|
|
+ if (expectPosition < 0) {
|
|
|
+ sendDelayPlayMsg(Math.abs(expectPosition));
|
|
|
+ return;
|
|
|
+ }
|
|
|
mPlayer.start();
|
|
|
}
|
|
|
+
|
|
|
+// // release()会释放player、将player置空,所以这里需要判断一下
|
|
|
+// if (null != mPlayer && hasPrepared) {
|
|
|
+// mPlayer.start();
|
|
|
+// }
|
|
|
}
|
|
|
|
|
|
public void pause() {
|
|
@@ -170,11 +181,11 @@ public class CustomPlayer implements MediaPlayer.OnErrorListener, MediaPlayer.On
|
|
|
}
|
|
|
|
|
|
public void seekTo(int position) {
|
|
|
+ this.expectPosition = position;
|
|
|
if (mPlayer == null) {
|
|
|
return;
|
|
|
}
|
|
|
LOG.i(TAG, "seekTo getTotal:" + getTotal());
|
|
|
- this.expectPosition = position;
|
|
|
if (position > getTotal()) {
|
|
|
position = getTotal();
|
|
|
}
|