Removed 'paused'-status message

This commit is contained in:
daniel oeh 2012-09-10 13:04:48 +02:00
parent 5df974a85e
commit 6d40b2ed04
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@
<string name="download_running">Download running</string> <string name="download_running">Download running</string>
<!-- Mediaplayer status Messages --> <!-- Mediaplayer status Messages -->
<string name="player_paused_msg">Paused</string>
<string name="player_error_msg">Error!</string> <string name="player_error_msg">Error!</string>
<string name="player_stopped_msg">No media playing</string> <string name="player_stopped_msg">No media playing</string>
<string name="player_preparing_msg">Preparing</string> <string name="player_preparing_msg">Preparing</string>

View File

@ -322,7 +322,7 @@ public abstract class PlaybackController {
postStatusMsg(R.string.player_error_msg); postStatusMsg(R.string.player_error_msg);
break; break;
case PAUSED: case PAUSED:
postStatusMsg(R.string.player_paused_msg); clearStatusMsg();
checkMediaInfoLoaded(); checkMediaInfoLoaded();
cancelPositionObserver(); cancelPositionObserver();
updatePlayButtonAppearance(R.drawable.av_play); updatePlayButtonAppearance(R.drawable.av_play);