FM: increase delay in Volume update when active device changed
Increase delay in volume update for FM when active device
changed so that in mean time audio framework can update the
volume index after active device change.
CRs-Fixed: 2460255
Change-Id: I9317b3051eac22fa92e708736c62aa1444e25cba
diff --git a/fmapp2/src/com/caf/fmradio/FMRadioService.java b/fmapp2/src/com/caf/fmradio/FMRadioService.java
index ce39f38..c2f08d4 100644
--- a/fmapp2/src/com/caf/fmradio/FMRadioService.java
+++ b/fmapp2/src/com/caf/fmradio/FMRadioService.java
@@ -752,7 +752,7 @@
final Runnable mFmVolumeHandler = new Runnable() {
public void run() {
try {
- Thread.sleep(1000);
+ Thread.sleep(1500);
} catch (Exception ex) {
Log.d( LOGTAG, "RunningThread InterruptedException");
return;