Loading media/java/android/media/AudioManager.java +5 −1 Original line number Diff line number Diff line Loading @@ -1191,7 +1191,11 @@ public class AudioManager { public boolean isStreamMute(int streamType) { IAudioService service = getService(); try { if (mUseMasterVolume) { return service.isMasterMute(); } else { return service.isStreamMute(streamType); } } catch (RemoteException e) { Log.e(TAG, "Dead object in isStreamMute", e); return false; Loading Loading
media/java/android/media/AudioManager.java +5 −1 Original line number Diff line number Diff line Loading @@ -1191,7 +1191,11 @@ public class AudioManager { public boolean isStreamMute(int streamType) { IAudioService service = getService(); try { if (mUseMasterVolume) { return service.isMasterMute(); } else { return service.isStreamMute(streamType); } } catch (RemoteException e) { Log.e(TAG, "Dead object in isStreamMute", e); return false; Loading