Loading src/com/android/dialer/calllog/CallLogAdapter.java +1 −1 Original line number Diff line number Diff line Loading @@ -153,7 +153,7 @@ public class CallLogAdapter extends GroupingListAdapter if (mVoicemailPlaybackPresenter != null) { // Always reset the voicemail playback state on expand or collapse. mVoicemailPlaybackPresenter.reset(); mVoicemailPlaybackPresenter.resetAll(); } if (viewHolder.getAdapterPosition() == mCurrentlyExpandedPosition) { Loading src/com/android/dialer/voicemail/VoicemailPlaybackPresenter.java +17 −10 Original line number Diff line number Diff line Loading @@ -266,7 +266,17 @@ public class VoicemailPlaybackPresenter } /** * Reset the presenter for playback. * Reset the presenter for playback back to its original state. */ public void resetAll() { reset(); mView = null; mVoicemailUri = null; } /** * Reset the presenter such that it is as if the voicemail has not been played. */ public void reset() { if (mMediaPlayer != null) { Loading @@ -276,13 +286,15 @@ public class VoicemailPlaybackPresenter disableProximitySensor(false /* waitForFarState */); mView = null; mVoicemailUri = null; mIsPrepared = false; mIsPlaying = false; mPosition = 0; mDuration.set(0); if (mView != null) { mView.onPlaybackStopped(); mView.setClipPosition(0, mDuration.get()); } } /** Loading @@ -297,16 +309,11 @@ public class VoicemailPlaybackPresenter } // Release the media player, otherwise there may be failures. if (mMediaPlayer != null) { mMediaPlayer.release(); mMediaPlayer = null; mIsPrepared = false; } reset(); if (mActivity != null) { mActivity.getWindow().clearFlags(LayoutParams.FLAG_KEEP_SCREEN_ON); } disableProximitySensor(false /* waitForFarState */); } /** Loading Loading
src/com/android/dialer/calllog/CallLogAdapter.java +1 −1 Original line number Diff line number Diff line Loading @@ -153,7 +153,7 @@ public class CallLogAdapter extends GroupingListAdapter if (mVoicemailPlaybackPresenter != null) { // Always reset the voicemail playback state on expand or collapse. mVoicemailPlaybackPresenter.reset(); mVoicemailPlaybackPresenter.resetAll(); } if (viewHolder.getAdapterPosition() == mCurrentlyExpandedPosition) { Loading
src/com/android/dialer/voicemail/VoicemailPlaybackPresenter.java +17 −10 Original line number Diff line number Diff line Loading @@ -266,7 +266,17 @@ public class VoicemailPlaybackPresenter } /** * Reset the presenter for playback. * Reset the presenter for playback back to its original state. */ public void resetAll() { reset(); mView = null; mVoicemailUri = null; } /** * Reset the presenter such that it is as if the voicemail has not been played. */ public void reset() { if (mMediaPlayer != null) { Loading @@ -276,13 +286,15 @@ public class VoicemailPlaybackPresenter disableProximitySensor(false /* waitForFarState */); mView = null; mVoicemailUri = null; mIsPrepared = false; mIsPlaying = false; mPosition = 0; mDuration.set(0); if (mView != null) { mView.onPlaybackStopped(); mView.setClipPosition(0, mDuration.get()); } } /** Loading @@ -297,16 +309,11 @@ public class VoicemailPlaybackPresenter } // Release the media player, otherwise there may be failures. if (mMediaPlayer != null) { mMediaPlayer.release(); mMediaPlayer = null; mIsPrepared = false; } reset(); if (mActivity != null) { mActivity.getWindow().clearFlags(LayoutParams.FLAG_KEEP_SCREEN_ON); } disableProximitySensor(false /* waitForFarState */); } /** Loading