Fix for media been always autoplayed when opened from miniplayer
This commit is contained in:
parent
f9a65d4277
commit
f723405032
1 changed files with 5 additions and 1 deletions
|
@ -291,7 +291,6 @@ public class FileViewFragment extends BaseFragment implements
|
||||||
if (!playbackStarted) {
|
if (!playbackStarted) {
|
||||||
logPlay(currentUrl, startTimeMillis);
|
logPlay(currentUrl, startTimeMillis);
|
||||||
playbackStarted = true;
|
playbackStarted = true;
|
||||||
isPlaying = true;
|
|
||||||
|
|
||||||
long lastPosition = loadLastPlaybackPosition();
|
long lastPosition = loadLastPlaybackPosition();
|
||||||
if (lastPosition > -1) {
|
if (lastPosition > -1) {
|
||||||
|
@ -340,6 +339,11 @@ public class FileViewFragment extends BaseFragment implements
|
||||||
hideBuffering();
|
hideBuffering();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onIsPlayingChanged(boolean isPlayng) {
|
||||||
|
isPlaying = isPlayng;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return root;
|
return root;
|
||||||
|
|
Loading…
Reference in a new issue