FMAPP: Mute icon is properly updated.
When volume is changed in the FM App on mute mode,
though the sound is heard, mute icon is still visible.
Added logic to update the mute icon properly
Change-Id: Ic5fc07c33d6c962c63fe0e6fb3e7805ac5a48664
diff --git a/fmapp2/src/com/caf/fmradio/FMRadioService.java b/fmapp2/src/com/caf/fmradio/FMRadioService.java
index 619194c..b1d7216 100644
--- a/fmapp2/src/com/caf/fmradio/FMRadioService.java
+++ b/fmapp2/src/com/caf/fmradio/FMRadioService.java
@@ -385,7 +385,20 @@
String keyValPairs = new String("fm_volume="+volume);
Log.d(LOGTAG, "keyValPairs = "+keyValPairs);
audioManager.setParameters(keyValPairs);
-
+ try
+ {
+ if (mCallbacks != null)
+ {
+ if (isMuted() == true) {
+ unMute();
+ mCallbacks.onMute(false);
+ }
+ }
+ }
+ catch (RemoteException e)
+ {
+ e.printStackTrace();
+ }
}
private boolean configureFMDeviceLoopback(boolean enable) {
Log.d(LOGTAG, "configureFMDeviceLoopback enable = " + enable +