blob: d20bbd67dcec9e29ea864a377ccf0a7e0a94705f [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.view;
18
Amith Yamasani2bbdd772011-02-02 18:54:13 -080019import com.android.internal.R;
20
Eric Laurentc34dcc12012-09-10 13:51:52 -070021import android.app.AlertDialog;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080022import android.app.Dialog;
23import android.content.DialogInterface.OnDismissListener;
24import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.Context;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080026import android.content.DialogInterface;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.content.Intent;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080028import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.content.res.Resources;
30import android.media.AudioManager;
31import android.media.AudioService;
32import android.media.AudioSystem;
Marco Nelissen69f593c2009-07-28 09:55:04 -070033import android.media.RingtoneManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.media.ToneGenerator;
Marco Nelissen69f593c2009-07-28 09:55:04 -070035import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.os.Handler;
37import android.os.Message;
38import android.os.Vibrator;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.util.Log;
Amith Yamasani284e6302011-09-16 18:24:47 -070040import android.view.WindowManager.LayoutParams;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.widget.ImageView;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080042import android.widget.SeekBar;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080043import android.widget.SeekBar.OnSeekBarChangeListener;
44
45import java.util.HashMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
47/**
48 * Handle the volume up and down keys.
49 *
50 * This code really should be moved elsewhere.
51 *
Dianne Hackborne8ecde12011-08-03 18:55:19 -070052 * Seriously, it really really should be moved elsewhere. This is used by
53 * android.media.AudioService, which actually runs in the system process, to
54 * show the volume dialog when the user changes the volume. What a mess.
55 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056 * @hide
57 */
Amith Yamasani2bbdd772011-02-02 18:54:13 -080058public class VolumePanel extends Handler implements OnSeekBarChangeListener, View.OnClickListener
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059{
60 private static final String TAG = "VolumePanel";
Marco Nelissen69f593c2009-07-28 09:55:04 -070061 private static boolean LOGD = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062
63 /**
64 * The delay before playing a sound. This small period exists so the user
65 * can press another key (non-volume keys, too) to have it NOT be audible.
66 * <p>
67 * PhoneWindow will implement this part.
68 */
69 public static final int PLAY_SOUND_DELAY = 300;
70
71 /**
72 * The delay before vibrating. This small period exists so if the user is
73 * moving to silent mode, it will not emit a short vibrate (it normally
74 * would since vibrate is between normal mode and silent mode using hardware
75 * keys).
76 */
77 public static final int VIBRATE_DELAY = 300;
78
79 private static final int VIBRATE_DURATION = 300;
80 private static final int BEEP_DURATION = 150;
81 private static final int MAX_VOLUME = 100;
82 private static final int FREE_DELAY = 10000;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080083 private static final int TIMEOUT_DELAY = 3000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
85 private static final int MSG_VOLUME_CHANGED = 0;
86 private static final int MSG_FREE_RESOURCES = 1;
87 private static final int MSG_PLAY_SOUND = 2;
88 private static final int MSG_STOP_SOUNDS = 3;
89 private static final int MSG_VIBRATE = 4;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080090 private static final int MSG_TIMEOUT = 5;
91 private static final int MSG_RINGER_MODE_CHANGED = 6;
Mike Lockwoodce952c82011-11-14 10:47:42 -080092 private static final int MSG_MUTE_CHANGED = 7;
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -070093 private static final int MSG_REMOTE_VOLUME_CHANGED = 8;
94 private static final int MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN = 9;
95 private static final int MSG_SLIDER_VISIBILITY_CHANGED = 10;
Eric Laurentc34dcc12012-09-10 13:51:52 -070096 private static final int MSG_DISPLAY_SAFE_VOLUME_WARNING = 11;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097
Mike Lockwood8dc1dab2011-10-27 09:52:41 -040098 // Pseudo stream type for master volume
Mike Lockwood47676902011-11-08 10:31:21 -080099 private static final int STREAM_MASTER = -100;
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700100 // Pseudo stream type for remote volume is defined in AudioService.STREAM_REMOTE_MUSIC
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 protected Context mContext;
103 private AudioManager mAudioManager;
104 protected AudioService mAudioService;
Marco Nelissen69f593c2009-07-28 09:55:04 -0700105 private boolean mRingIsSilent;
Amith Yamasani42722bf2011-07-22 10:34:27 -0700106 private boolean mShowCombinedVolumes;
Amith Yamasani71def772011-10-12 12:25:24 -0700107 private boolean mVoiceCapable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108
Christopher Tatec4b78d22012-05-22 13:57:58 -0700109 // True if we want to play tones on the system stream when the master stream is specified.
110 private final boolean mPlayMasterStreamTones;
111
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800112 /** Dialog containing all the sliders */
113 private final Dialog mDialog;
114 /** Dialog's content view */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 private final View mView;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800116
Amith Yamasanibaf6dbf2011-08-18 17:40:29 -0700117 /** The visible portion of the volume overlay */
118 private final ViewGroup mPanel;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800119 /** Contains the sliders and their touchable icons */
120 private final ViewGroup mSliderGroup;
121 /** The button that expands the dialog to show all sliders */
122 private final View mMoreButton;
123 /** Dummy divider icon that needs to vanish with the more button */
124 private final View mDivider;
125
126 /** Currently active stream that shows up at the top of the list of sliders */
127 private int mActiveStreamType = -1;
128 /** All the slider controls mapped by stream type */
129 private HashMap<Integer,StreamControl> mStreamControls;
130
Amith Yamasani71def772011-10-12 12:25:24 -0700131 private enum StreamResources {
132 BluetoothSCOStream(AudioManager.STREAM_BLUETOOTH_SCO,
133 R.string.volume_icon_description_bluetooth,
134 R.drawable.ic_audio_bt,
135 R.drawable.ic_audio_bt,
136 false),
137 RingerStream(AudioManager.STREAM_RING,
138 R.string.volume_icon_description_ringer,
139 R.drawable.ic_audio_ring_notif,
140 R.drawable.ic_audio_ring_notif_mute,
141 false),
142 VoiceStream(AudioManager.STREAM_VOICE_CALL,
143 R.string.volume_icon_description_incall,
144 R.drawable.ic_audio_phone,
145 R.drawable.ic_audio_phone,
146 false),
Amith Yamasani92e1b2d2011-10-14 17:24:47 -0700147 AlarmStream(AudioManager.STREAM_ALARM,
148 R.string.volume_alarm,
149 R.drawable.ic_audio_alarm,
150 R.drawable.ic_audio_alarm_mute,
151 false),
Amith Yamasani71def772011-10-12 12:25:24 -0700152 MediaStream(AudioManager.STREAM_MUSIC,
153 R.string.volume_icon_description_media,
154 R.drawable.ic_audio_vol,
155 R.drawable.ic_audio_vol_mute,
156 true),
157 NotificationStream(AudioManager.STREAM_NOTIFICATION,
158 R.string.volume_icon_description_notification,
159 R.drawable.ic_audio_notification,
160 R.drawable.ic_audio_notification_mute,
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400161 true),
162 // for now, use media resources for master volume
163 MasterStream(STREAM_MASTER,
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700164 R.string.volume_icon_description_media, //FIXME should have its own description
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400165 R.drawable.ic_audio_vol,
166 R.drawable.ic_audio_vol_mute,
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700167 false),
168 RemoteStream(AudioService.STREAM_REMOTE_MUSIC,
169 R.string.volume_icon_description_media, //FIXME should have its own description
170 R.drawable.ic_media_route_on_holo_dark,
171 R.drawable.ic_media_route_disabled_holo_dark,
172 false);// will be dynamically updated
Amith Yamasani71def772011-10-12 12:25:24 -0700173
174 int streamType;
175 int descRes;
176 int iconRes;
177 int iconMuteRes;
178 // RING, VOICE_CALL & BLUETOOTH_SCO are hidden unless explicitly requested
179 boolean show;
180
181 StreamResources(int streamType, int descRes, int iconRes, int iconMuteRes, boolean show) {
182 this.streamType = streamType;
183 this.descRes = descRes;
184 this.iconRes = iconRes;
185 this.iconMuteRes = iconMuteRes;
186 this.show = show;
187 }
188 };
189
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800190 // List of stream types and their order
Amith Yamasani71def772011-10-12 12:25:24 -0700191 private static final StreamResources[] STREAMS = {
192 StreamResources.BluetoothSCOStream,
193 StreamResources.RingerStream,
194 StreamResources.VoiceStream,
195 StreamResources.MediaStream,
Amith Yamasani92e1b2d2011-10-14 17:24:47 -0700196 StreamResources.NotificationStream,
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400197 StreamResources.AlarmStream,
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700198 StreamResources.MasterStream,
199 StreamResources.RemoteStream
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800200 };
201
202 /** Object that contains data for each slider */
203 private class StreamControl {
204 int streamType;
205 ViewGroup group;
206 ImageView icon;
207 SeekBar seekbarView;
208 int iconRes;
209 int iconMuteRes;
210 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211
212 // Synchronize when accessing this
213 private ToneGenerator mToneGenerators[];
214 private Vibrator mVibrator;
215
Eric Laurentc34dcc12012-09-10 13:51:52 -0700216 private static AlertDialog sConfirmSafeVolumeDialog;
Eric Laurent0516a9e2012-09-19 11:53:03 -0700217 private static Object sConfirmSafeVolumeLock = new Object();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700218
219 private static class WarningDialogReceiver extends BroadcastReceiver
220 implements DialogInterface.OnDismissListener {
Eric Laurentfde16d52012-12-03 14:42:39 -0800221 private final Context mContext;
222 private final Dialog mDialog;
223 private final VolumePanel mVolumePanel;
Eric Laurentc34dcc12012-09-10 13:51:52 -0700224
Eric Laurentfde16d52012-12-03 14:42:39 -0800225 WarningDialogReceiver(Context context, Dialog dialog, VolumePanel volumePanel) {
Eric Laurentc34dcc12012-09-10 13:51:52 -0700226 mContext = context;
227 mDialog = dialog;
Eric Laurentfde16d52012-12-03 14:42:39 -0800228 mVolumePanel = volumePanel;
Eric Laurentc34dcc12012-09-10 13:51:52 -0700229 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
230 context.registerReceiver(this, filter);
231 }
232
233 @Override
234 public void onReceive(Context context, Intent intent) {
235 mDialog.cancel();
Eric Laurentfde16d52012-12-03 14:42:39 -0800236 cleanUp();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700237 }
238
239 public void onDismiss(DialogInterface unused) {
240 mContext.unregisterReceiver(this);
Eric Laurentfde16d52012-12-03 14:42:39 -0800241 cleanUp();
242 }
243
244 private void cleanUp() {
Eric Laurent0516a9e2012-09-19 11:53:03 -0700245 synchronized (sConfirmSafeVolumeLock) {
246 sConfirmSafeVolumeDialog = null;
247 }
Eric Laurentfde16d52012-12-03 14:42:39 -0800248 mVolumePanel.forceTimeout();
249 mVolumePanel.updateStates();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700250 }
251 }
252
253
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800254 public VolumePanel(final Context context, AudioService volumeService) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 mContext = context;
256 mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
257 mAudioService = volumeService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400259 // For now, only show master volume if master volume is supported
260 boolean useMasterVolume = context.getResources().getBoolean(
261 com.android.internal.R.bool.config_useMasterVolume);
262 if (useMasterVolume) {
263 for (int i = 0; i < STREAMS.length; i++) {
264 StreamResources streamRes = STREAMS[i];
265 streamRes.show = (streamRes.streamType == STREAM_MASTER);
266 }
267 }
268
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269 LayoutInflater inflater = (LayoutInflater) context
270 .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800271 View view = mView = inflater.inflate(R.layout.volume_adjust, null);
272 mView.setOnTouchListener(new View.OnTouchListener() {
273 public boolean onTouch(View v, MotionEvent event) {
274 resetTimeout();
Amith Yamasani284e6302011-09-16 18:24:47 -0700275 return false;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800276 }
277 });
Amith Yamasanibaf6dbf2011-08-18 17:40:29 -0700278 mPanel = (ViewGroup) mView.findViewById(R.id.visible_panel);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800279 mSliderGroup = (ViewGroup) mView.findViewById(R.id.slider_group);
280 mMoreButton = (ImageView) mView.findViewById(R.id.expand_button);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800281 mDivider = (ImageView) mView.findViewById(R.id.expand_button_divider);
282
Amith Yamasani284e6302011-09-16 18:24:47 -0700283 mDialog = new Dialog(context, R.style.Theme_Panel_Volume) {
284 public boolean onTouchEvent(MotionEvent event) {
Eric Laurentfde16d52012-12-03 14:42:39 -0800285 if (isShowing() && event.getAction() == MotionEvent.ACTION_OUTSIDE &&
286 sConfirmSafeVolumeDialog == null) {
Amith Yamasani284e6302011-09-16 18:24:47 -0700287 forceTimeout();
288 return true;
289 }
290 return false;
291 }
292 };
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800293 mDialog.setTitle("Volume control"); // No need to localize
294 mDialog.setContentView(mView);
295 mDialog.setOnDismissListener(new OnDismissListener() {
296 public void onDismiss(DialogInterface dialog) {
297 mActiveStreamType = -1;
Eric Laurent402f7f22011-02-04 12:30:32 -0800298 mAudioManager.forceVolumeControlStream(mActiveStreamType);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800299 }
300 });
301 // Change some window properties
302 Window window = mDialog.getWindow();
303 window.setGravity(Gravity.TOP);
Amith Yamasani284e6302011-09-16 18:24:47 -0700304 LayoutParams lp = window.getAttributes();
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800305 lp.token = null;
Amith Yamasani284e6302011-09-16 18:24:47 -0700306 // Offset from the top
307 lp.y = mContext.getResources().getDimensionPixelOffset(
308 com.android.internal.R.dimen.volume_panel_top);
309 lp.type = LayoutParams.TYPE_VOLUME_OVERLAY;
310 lp.width = LayoutParams.WRAP_CONTENT;
311 lp.height = LayoutParams.WRAP_CONTENT;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800312 window.setAttributes(lp);
Amith Yamasani284e6302011-09-16 18:24:47 -0700313 window.addFlags(LayoutParams.FLAG_NOT_FOCUSABLE | LayoutParams.FLAG_NOT_TOUCH_MODAL
314 | LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800315
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316 mToneGenerators = new ToneGenerator[AudioSystem.getNumStreamTypes()];
Jeff Brownc2346132012-04-13 01:55:38 -0700317 mVibrator = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800318
Amith Yamasani71def772011-10-12 12:25:24 -0700319 mVoiceCapable = context.getResources().getBoolean(R.bool.config_voice_capable);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400320 mShowCombinedVolumes = !mVoiceCapable && !useMasterVolume;
Amith Yamasani42722bf2011-07-22 10:34:27 -0700321 // If we don't want to show multiple volumes, hide the settings button and divider
322 if (!mShowCombinedVolumes) {
323 mMoreButton.setVisibility(View.GONE);
324 mDivider.setVisibility(View.GONE);
325 } else {
326 mMoreButton.setOnClickListener(this);
327 }
328
Christopher Tatec4b78d22012-05-22 13:57:58 -0700329 boolean masterVolumeOnly = context.getResources().getBoolean(
330 com.android.internal.R.bool.config_useMasterVolume);
331 boolean masterVolumeKeySounds = mContext.getResources().getBoolean(
332 com.android.internal.R.bool.config_useVolumeKeySounds);
333
334 mPlayMasterStreamTones = masterVolumeOnly && masterVolumeKeySounds;
335
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800336 listenToRingerMode();
337 }
338
Fabrice Di Meglio8c028842013-01-09 18:20:38 -0800339 public void setLayoutDirection(int layoutDirection) {
340 mPanel.setLayoutDirection(layoutDirection);
341 updateStates();
342 }
343
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800344 private void listenToRingerMode() {
345 final IntentFilter filter = new IntentFilter();
346 filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
347 mContext.registerReceiver(new BroadcastReceiver() {
348
349 public void onReceive(Context context, Intent intent) {
350 final String action = intent.getAction();
351
352 if (AudioManager.RINGER_MODE_CHANGED_ACTION.equals(action)) {
353 removeMessages(MSG_RINGER_MODE_CHANGED);
354 sendMessage(obtainMessage(MSG_RINGER_MODE_CHANGED));
355 }
356 }
357 }, filter);
358 }
359
360 private boolean isMuted(int streamType) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400361 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700362 return mAudioManager.isMasterMute();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700363 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
364 return (mAudioService.getRemoteStreamVolume() <= 0);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400365 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700366 return mAudioManager.isStreamMute(streamType);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400367 }
368 }
369
370 private int getStreamMaxVolume(int streamType) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400371 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700372 return mAudioManager.getMasterMaxVolume();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700373 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
374 return mAudioService.getRemoteStreamMaxVolume();
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400375 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700376 return mAudioManager.getStreamMaxVolume(streamType);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400377 }
378 }
379
380 private int getStreamVolume(int streamType) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400381 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700382 return mAudioManager.getMasterVolume();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700383 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
384 return mAudioService.getRemoteStreamVolume();
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400385 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700386 return mAudioManager.getStreamVolume(streamType);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400387 }
388 }
389
390 private void setStreamVolume(int streamType, int index, int flags) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400391 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700392 mAudioManager.setMasterVolume(index, flags);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700393 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
394 mAudioService.setRemoteStreamVolume(index);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400395 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700396 mAudioManager.setStreamVolume(streamType, index, flags);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400397 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800398 }
399
400 private void createSliders() {
401 LayoutInflater inflater = (LayoutInflater) mContext
402 .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Amith Yamasani71def772011-10-12 12:25:24 -0700403 mStreamControls = new HashMap<Integer, StreamControl>(STREAMS.length);
Amith Yamasani42722bf2011-07-22 10:34:27 -0700404 Resources res = mContext.getResources();
Amith Yamasani71def772011-10-12 12:25:24 -0700405 for (int i = 0; i < STREAMS.length; i++) {
406 StreamResources streamRes = STREAMS[i];
407 int streamType = streamRes.streamType;
408 if (mVoiceCapable && streamRes == StreamResources.NotificationStream) {
409 streamRes = StreamResources.RingerStream;
410 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800411 StreamControl sc = new StreamControl();
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700412 sc.streamType = streamType;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800413 sc.group = (ViewGroup) inflater.inflate(R.layout.volume_adjust_item, null);
414 sc.group.setTag(sc);
415 sc.icon = (ImageView) sc.group.findViewById(R.id.stream_icon);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800416 sc.icon.setTag(sc);
Amith Yamasani71def772011-10-12 12:25:24 -0700417 sc.icon.setContentDescription(res.getString(streamRes.descRes));
418 sc.iconRes = streamRes.iconRes;
419 sc.iconMuteRes = streamRes.iconMuteRes;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800420 sc.icon.setImageResource(sc.iconRes);
421 sc.seekbarView = (SeekBar) sc.group.findViewById(R.id.seekbar);
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700422 int plusOne = (streamType == AudioSystem.STREAM_BLUETOOTH_SCO ||
423 streamType == AudioSystem.STREAM_VOICE_CALL) ? 1 : 0;
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400424 sc.seekbarView.setMax(getStreamMaxVolume(streamType) + plusOne);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800425 sc.seekbarView.setOnSeekBarChangeListener(this);
426 sc.seekbarView.setTag(sc);
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700427 mStreamControls.put(streamType, sc);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800428 }
429 }
430
431 private void reorderSliders(int activeStreamType) {
432 mSliderGroup.removeAllViews();
433
434 StreamControl active = mStreamControls.get(activeStreamType);
435 if (active == null) {
436 Log.e("VolumePanel", "Missing stream type! - " + activeStreamType);
437 mActiveStreamType = -1;
438 } else {
439 mSliderGroup.addView(active.group);
440 mActiveStreamType = activeStreamType;
441 active.group.setVisibility(View.VISIBLE);
442 updateSlider(active);
443 }
444
Amith Yamasani42722bf2011-07-22 10:34:27 -0700445 addOtherVolumes();
446 }
447
448 private void addOtherVolumes() {
449 if (!mShowCombinedVolumes) return;
450
Amith Yamasani71def772011-10-12 12:25:24 -0700451 for (int i = 0; i < STREAMS.length; i++) {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800452 // Skip the phone specific ones and the active one
Amith Yamasani71def772011-10-12 12:25:24 -0700453 final int streamType = STREAMS[i].streamType;
454 if (!STREAMS[i].show || streamType == mActiveStreamType) {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800455 continue;
456 }
457 StreamControl sc = mStreamControls.get(streamType);
458 mSliderGroup.addView(sc.group);
459 updateSlider(sc);
460 }
461 }
462
463 /** Update the mute and progress state of a slider */
464 private void updateSlider(StreamControl sc) {
Eric Laurent8c787522012-05-14 14:09:43 -0700465 sc.seekbarView.setProgress(getStreamVolume(sc.streamType));
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800466 final boolean muted = isMuted(sc.streamType);
Fabrice Di Meglio8c028842013-01-09 18:20:38 -0800467 // Force reloading the image resource
468 sc.icon.setImageDrawable(null);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800469 sc.icon.setImageResource(muted ? sc.iconMuteRes : sc.iconRes);
Eric Laurent8c787522012-05-14 14:09:43 -0700470 if (sc.streamType == AudioManager.STREAM_RING &&
471 mAudioManager.getRingerMode() == AudioManager.RINGER_MODE_VIBRATE) {
Amith Yamasanic696a532011-10-28 17:02:37 -0700472 sc.icon.setImageResource(R.drawable.ic_audio_ring_notif_vibrate);
473 }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700474 if (sc.streamType == AudioService.STREAM_REMOTE_MUSIC) {
475 // never disable touch interactions for remote playback, the muting is not tied to
476 // the state of the phone.
477 sc.seekbarView.setEnabled(true);
Eric Laurentfde16d52012-12-03 14:42:39 -0800478 } else if ((sc.streamType != mAudioManager.getMasterStreamType() && muted) ||
479 (sConfirmSafeVolumeDialog != null)) {
Eric Laurent8c787522012-05-14 14:09:43 -0700480 sc.seekbarView.setEnabled(false);
481 } else {
482 sc.seekbarView.setEnabled(true);
483 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800484 }
485
486 private boolean isExpanded() {
487 return mMoreButton.getVisibility() != View.VISIBLE;
488 }
489
490 private void expand() {
491 final int count = mSliderGroup.getChildCount();
492 for (int i = 0; i < count; i++) {
493 mSliderGroup.getChildAt(i).setVisibility(View.VISIBLE);
494 }
495 mMoreButton.setVisibility(View.INVISIBLE);
496 mDivider.setVisibility(View.INVISIBLE);
497 }
498
499 private void collapse() {
500 mMoreButton.setVisibility(View.VISIBLE);
501 mDivider.setVisibility(View.VISIBLE);
502 final int count = mSliderGroup.getChildCount();
503 for (int i = 1; i < count; i++) {
504 mSliderGroup.getChildAt(i).setVisibility(View.GONE);
505 }
506 }
507
Eric Laurentfde16d52012-12-03 14:42:39 -0800508 public void updateStates() {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800509 final int count = mSliderGroup.getChildCount();
510 for (int i = 0; i < count; i++) {
511 StreamControl sc = (StreamControl) mSliderGroup.getChildAt(i).getTag();
512 updateSlider(sc);
513 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 }
515
516 public void postVolumeChanged(int streamType, int flags) {
517 if (hasMessages(MSG_VOLUME_CHANGED)) return;
Amith Yamasania6549862012-05-30 17:29:28 -0700518 synchronized (this) {
519 if (mStreamControls == null) {
520 createSliders();
521 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800522 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 removeMessages(MSG_FREE_RESOURCES);
524 obtainMessage(MSG_VOLUME_CHANGED, streamType, flags).sendToTarget();
525 }
526
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700527 public void postRemoteVolumeChanged(int streamType, int flags) {
528 if (hasMessages(MSG_REMOTE_VOLUME_CHANGED)) return;
529 synchronized (this) {
530 if (mStreamControls == null) {
531 createSliders();
532 }
533 }
534 removeMessages(MSG_FREE_RESOURCES);
535 obtainMessage(MSG_REMOTE_VOLUME_CHANGED, streamType, flags).sendToTarget();
536 }
537
538 public void postRemoteSliderVisibility(boolean visible) {
539 obtainMessage(MSG_SLIDER_VISIBILITY_CHANGED,
540 AudioService.STREAM_REMOTE_MUSIC, visible ? 1 : 0).sendToTarget();
541 }
542
543 /**
544 * Called by AudioService when it has received new remote playback information that
545 * would affect the VolumePanel display (mainly volumes). The difference with
546 * {@link #postRemoteVolumeChanged(int, int)} is that the handling of the posted message
547 * (MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN) will only update the volume slider if it is being
548 * displayed.
549 * This special code path is due to the fact that remote volume updates arrive to AudioService
550 * asynchronously. So after AudioService has sent the volume update (which should be treated
551 * as a request to update the volume), the application will likely set a new volume. If the UI
552 * is still up, we need to refresh the display to show this new value.
553 */
554 public void postHasNewRemotePlaybackInfo() {
555 if (hasMessages(MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN)) return;
556 // don't create or prevent resources to be freed, if they disappear, this update came too
557 // late and shouldn't warrant the panel to be displayed longer
558 obtainMessage(MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN).sendToTarget();
559 }
560
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400561 public void postMasterVolumeChanged(int flags) {
562 postVolumeChanged(STREAM_MASTER, flags);
563 }
564
Mike Lockwoodce952c82011-11-14 10:47:42 -0800565 public void postMuteChanged(int streamType, int flags) {
566 if (hasMessages(MSG_VOLUME_CHANGED)) return;
Amith Yamasania6549862012-05-30 17:29:28 -0700567 synchronized (this) {
568 if (mStreamControls == null) {
569 createSliders();
570 }
Mike Lockwoodce952c82011-11-14 10:47:42 -0800571 }
572 removeMessages(MSG_FREE_RESOURCES);
573 obtainMessage(MSG_MUTE_CHANGED, streamType, flags).sendToTarget();
574 }
575
576 public void postMasterMuteChanged(int flags) {
577 postMuteChanged(STREAM_MASTER, flags);
578 }
579
Eric Laurentfde16d52012-12-03 14:42:39 -0800580 public void postDisplaySafeVolumeWarning(int flags) {
Eric Laurent0516a9e2012-09-19 11:53:03 -0700581 if (hasMessages(MSG_DISPLAY_SAFE_VOLUME_WARNING)) return;
Eric Laurentfde16d52012-12-03 14:42:39 -0800582 obtainMessage(MSG_DISPLAY_SAFE_VOLUME_WARNING, flags, 0).sendToTarget();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700583 }
584
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 /**
586 * Override this if you have other work to do when the volume changes (for
587 * example, vibrating, playing a sound, etc.). Make sure to call through to
588 * the superclass implementation.
589 */
590 protected void onVolumeChanged(int streamType, int flags) {
591
592 if (LOGD) Log.d(TAG, "onVolumeChanged(streamType: " + streamType + ", flags: " + flags + ")");
593
594 if ((flags & AudioManager.FLAG_SHOW_UI) != 0) {
Amith Yamasania6549862012-05-30 17:29:28 -0700595 synchronized (this) {
596 if (mActiveStreamType != streamType) {
597 reorderSliders(streamType);
598 }
599 onShowVolumeChanged(streamType, flags);
Amith Yamasanie3361b82011-02-10 18:20:50 -0800600 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 }
602
Marco Nelissen69f593c2009-07-28 09:55:04 -0700603 if ((flags & AudioManager.FLAG_PLAY_SOUND) != 0 && ! mRingIsSilent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 removeMessages(MSG_PLAY_SOUND);
605 sendMessageDelayed(obtainMessage(MSG_PLAY_SOUND, streamType, flags), PLAY_SOUND_DELAY);
606 }
607
608 if ((flags & AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE) != 0) {
609 removeMessages(MSG_PLAY_SOUND);
610 removeMessages(MSG_VIBRATE);
611 onStopSounds();
612 }
613
614 removeMessages(MSG_FREE_RESOURCES);
615 sendMessageDelayed(obtainMessage(MSG_FREE_RESOURCES), FREE_DELAY);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800616 resetTimeout();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 }
618
Mike Lockwoodce952c82011-11-14 10:47:42 -0800619 protected void onMuteChanged(int streamType, int flags) {
620
621 if (LOGD) Log.d(TAG, "onMuteChanged(streamType: " + streamType + ", flags: " + flags + ")");
622
623 StreamControl sc = mStreamControls.get(streamType);
624 if (sc != null) {
625 sc.icon.setImageResource(isMuted(sc.streamType) ? sc.iconMuteRes : sc.iconRes);
626 }
627
628 onVolumeChanged(streamType, flags);
629 }
630
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800631 protected void onShowVolumeChanged(int streamType, int flags) {
Eric Laurent8c787522012-05-14 14:09:43 -0700632 int index = getStreamVolume(streamType);
Eric Laurentd72d51c2011-02-03 18:47:47 -0800633
Marco Nelissen69f593c2009-07-28 09:55:04 -0700634 mRingIsSilent = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800635
636 if (LOGD) {
637 Log.d(TAG, "onShowVolumeChanged(streamType: " + streamType
638 + ", flags: " + flags + "), index: " + index);
639 }
640
641 // get max volume for progress bar
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800642
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400643 int max = getStreamMaxVolume(streamType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644
645 switch (streamType) {
646
647 case AudioManager.STREAM_RING: {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800648// setRingerIcon();
Marco Nelissen69f593c2009-07-28 09:55:04 -0700649 Uri ringuri = RingtoneManager.getActualDefaultRingtoneUri(
650 mContext, RingtoneManager.TYPE_RINGTONE);
651 if (ringuri == null) {
Marco Nelissen69f593c2009-07-28 09:55:04 -0700652 mRingIsSilent = true;
653 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 break;
655 }
656
657 case AudioManager.STREAM_MUSIC: {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800658 // Special case for when Bluetooth is active for music
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800659 if ((mAudioManager.getDevicesForStream(AudioManager.STREAM_MUSIC) &
660 (AudioManager.DEVICE_OUT_BLUETOOTH_A2DP |
661 AudioManager.DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
662 AudioManager.DEVICE_OUT_BLUETOOTH_A2DP_SPEAKER)) != 0) {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800663 setMusicIcon(R.drawable.ic_audio_bt, R.drawable.ic_audio_bt_mute);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800664 } else {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800665 setMusicIcon(R.drawable.ic_audio_vol, R.drawable.ic_audio_vol_mute);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666 }
667 break;
668 }
669
670 case AudioManager.STREAM_VOICE_CALL: {
671 /*
672 * For in-call voice call volume, there is no inaudible volume.
673 * Rescale the UI control so the progress bar doesn't go all
674 * the way to zero and don't show the mute icon.
675 */
676 index++;
677 max++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800678 break;
679 }
680
681 case AudioManager.STREAM_ALARM: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 break;
683 }
684
685 case AudioManager.STREAM_NOTIFICATION: {
Marco Nelissen69f593c2009-07-28 09:55:04 -0700686 Uri ringuri = RingtoneManager.getActualDefaultRingtoneUri(
687 mContext, RingtoneManager.TYPE_NOTIFICATION);
688 if (ringuri == null) {
Marco Nelissen69f593c2009-07-28 09:55:04 -0700689 mRingIsSilent = true;
690 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 break;
692 }
693
694 case AudioManager.STREAM_BLUETOOTH_SCO: {
695 /*
696 * For in-call voice call volume, there is no inaudible volume.
697 * Rescale the UI control so the progress bar doesn't go all
698 * the way to zero and don't show the mute icon.
699 */
700 index++;
701 max++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800702 break;
703 }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700704
705 case AudioService.STREAM_REMOTE_MUSIC: {
706 if (LOGD) { Log.d(TAG, "showing remote volume "+index+" over "+ max); }
707 break;
708 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800709 }
710
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800711 StreamControl sc = mStreamControls.get(streamType);
712 if (sc != null) {
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700713 if (sc.seekbarView.getMax() != max) {
714 sc.seekbarView.setMax(max);
715 }
Eric Laurent4bbcc652012-09-24 14:26:30 -0700716
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800717 sc.seekbarView.setProgress(index);
Eric Laurent4bbcc652012-09-24 14:26:30 -0700718 if (((flags & AudioManager.FLAG_FIXED_VOLUME) != 0) ||
719 (streamType != mAudioManager.getMasterStreamType() &&
720 streamType != AudioService.STREAM_REMOTE_MUSIC &&
Eric Laurentfde16d52012-12-03 14:42:39 -0800721 isMuted(streamType)) ||
722 sConfirmSafeVolumeDialog != null) {
Eric Laurent8c787522012-05-14 14:09:43 -0700723 sc.seekbarView.setEnabled(false);
724 } else {
725 sc.seekbarView.setEnabled(true);
726 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800727 }
728
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800729 if (!mDialog.isShowing()) {
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700730 int stream = (streamType == AudioService.STREAM_REMOTE_MUSIC) ? -1 : streamType;
731 // when the stream is for remote playback, use -1 to reset the stream type evaluation
732 mAudioManager.forceVolumeControlStream(stream);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800733 mDialog.setContentView(mView);
734 // Showing dialog - use collapsed state
Amith Yamasani42722bf2011-07-22 10:34:27 -0700735 if (mShowCombinedVolumes) {
736 collapse();
737 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800738 mDialog.show();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800739 }
740
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 // Do a little vibrate if applicable (only when going into vibrate mode)
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700742 if ((streamType != AudioService.STREAM_REMOTE_MUSIC) &&
743 ((flags & AudioManager.FLAG_VIBRATE) != 0) &&
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800744 mAudioService.isStreamAffectedByRingerMode(streamType) &&
Eric Laurent8c787522012-05-14 14:09:43 -0700745 mAudioManager.getRingerMode() == AudioManager.RINGER_MODE_VIBRATE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800746 sendMessageDelayed(obtainMessage(MSG_VIBRATE), VIBRATE_DELAY);
747 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800748 }
749
750 protected void onPlaySound(int streamType, int flags) {
751
752 if (hasMessages(MSG_STOP_SOUNDS)) {
753 removeMessages(MSG_STOP_SOUNDS);
754 // Force stop right now
755 onStopSounds();
756 }
757
758 synchronized (this) {
759 ToneGenerator toneGen = getOrCreateToneGenerator(streamType);
Eric Laurent733a42b2011-01-19 10:41:57 -0800760 if (toneGen != null) {
761 toneGen.startTone(ToneGenerator.TONE_PROP_BEEP);
762 sendMessageDelayed(obtainMessage(MSG_STOP_SOUNDS), BEEP_DURATION);
763 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800764 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800765 }
766
767 protected void onStopSounds() {
768
769 synchronized (this) {
770 int numStreamTypes = AudioSystem.getNumStreamTypes();
771 for (int i = numStreamTypes - 1; i >= 0; i--) {
772 ToneGenerator toneGen = mToneGenerators[i];
773 if (toneGen != null) {
774 toneGen.stopTone();
775 }
776 }
777 }
778 }
779
780 protected void onVibrate() {
781
782 // Make sure we ended up in vibrate ringer mode
Eric Laurent8c787522012-05-14 14:09:43 -0700783 if (mAudioManager.getRingerMode() != AudioManager.RINGER_MODE_VIBRATE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784 return;
785 }
786
787 mVibrator.vibrate(VIBRATE_DURATION);
788 }
789
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700790 protected void onRemoteVolumeChanged(int streamType, int flags) {
791 // streamType is the real stream type being affected, but for the UI sliders, we
792 // refer to AudioService.STREAM_REMOTE_MUSIC. We still play the beeps on the real
793 // stream type.
794 if (LOGD) Log.d(TAG, "onRemoteVolumeChanged(stream:"+streamType+", flags: " + flags + ")");
795
796 if (((flags & AudioManager.FLAG_SHOW_UI) != 0) || mDialog.isShowing()) {
797 synchronized (this) {
798 if (mActiveStreamType != AudioService.STREAM_REMOTE_MUSIC) {
799 reorderSliders(AudioService.STREAM_REMOTE_MUSIC);
800 }
801 onShowVolumeChanged(AudioService.STREAM_REMOTE_MUSIC, flags);
802 }
803 } else {
804 if (LOGD) Log.d(TAG, "not calling onShowVolumeChanged(), no FLAG_SHOW_UI or no UI");
805 }
806
807 if ((flags & AudioManager.FLAG_PLAY_SOUND) != 0 && ! mRingIsSilent) {
808 removeMessages(MSG_PLAY_SOUND);
809 sendMessageDelayed(obtainMessage(MSG_PLAY_SOUND, streamType, flags), PLAY_SOUND_DELAY);
810 }
811
812 if ((flags & AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE) != 0) {
813 removeMessages(MSG_PLAY_SOUND);
814 removeMessages(MSG_VIBRATE);
815 onStopSounds();
816 }
817
818 removeMessages(MSG_FREE_RESOURCES);
819 sendMessageDelayed(obtainMessage(MSG_FREE_RESOURCES), FREE_DELAY);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700820 resetTimeout();
821 }
822
823 protected void onRemoteVolumeUpdateIfShown() {
824 if (LOGD) Log.d(TAG, "onRemoteVolumeUpdateIfShown()");
825 if (mDialog.isShowing()
826 && (mActiveStreamType == AudioService.STREAM_REMOTE_MUSIC)
827 && (mStreamControls != null)) {
828 onShowVolumeChanged(AudioService.STREAM_REMOTE_MUSIC, 0);
829 }
830 }
831
832
833 /**
834 * Handler for MSG_SLIDER_VISIBILITY_CHANGED
835 * Hide or show a slider
836 * @param streamType can be a valid stream type value, or VolumePanel.STREAM_MASTER,
837 * or AudioService.STREAM_REMOTE_MUSIC
838 * @param visible
839 */
840 synchronized protected void onSliderVisibilityChanged(int streamType, int visible) {
841 if (LOGD) Log.d(TAG, "onSliderVisibilityChanged(stream="+streamType+", visi="+visible+")");
842 boolean isVisible = (visible == 1);
843 for (int i = STREAMS.length - 1 ; i >= 0 ; i--) {
844 StreamResources streamRes = STREAMS[i];
845 if (streamRes.streamType == streamType) {
846 streamRes.show = isVisible;
847 if (!isVisible && (mActiveStreamType == streamType)) {
848 mActiveStreamType = -1;
849 }
850 break;
851 }
852 }
853 }
854
Eric Laurentfde16d52012-12-03 14:42:39 -0800855 protected void onDisplaySafeVolumeWarning(int flags) {
856 if ((flags & AudioManager.FLAG_SHOW_UI) != 0 || mDialog.isShowing()) {
857 synchronized (sConfirmSafeVolumeLock) {
858 if (sConfirmSafeVolumeDialog != null) {
859 return;
860 }
861 sConfirmSafeVolumeDialog = new AlertDialog.Builder(mContext)
862 .setMessage(com.android.internal.R.string.safe_media_volume_warning)
863 .setPositiveButton(com.android.internal.R.string.yes,
864 new DialogInterface.OnClickListener() {
865 public void onClick(DialogInterface dialog, int which) {
866 mAudioService.disableSafeMediaVolume();
867 }
868 })
869 .setNegativeButton(com.android.internal.R.string.no, null)
870 .setIconAttribute(android.R.attr.alertDialogIcon)
871 .create();
872 final WarningDialogReceiver warning = new WarningDialogReceiver(mContext,
873 sConfirmSafeVolumeDialog, this);
Eric Laurent0516a9e2012-09-19 11:53:03 -0700874
Eric Laurentfde16d52012-12-03 14:42:39 -0800875 sConfirmSafeVolumeDialog.setOnDismissListener(warning);
876 sConfirmSafeVolumeDialog.getWindow().setType(
877 WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
878 sConfirmSafeVolumeDialog.show();
879 }
880 updateStates();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700881 }
Eric Laurentfde16d52012-12-03 14:42:39 -0800882 resetTimeout();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700883 }
884
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 /**
886 * Lock on this VolumePanel instance as long as you use the returned ToneGenerator.
887 */
888 private ToneGenerator getOrCreateToneGenerator(int streamType) {
Christopher Tatec4b78d22012-05-22 13:57:58 -0700889 if (streamType == STREAM_MASTER) {
890 // For devices that use the master volume setting only but still want to
891 // play a volume-changed tone, direct the master volume pseudostream to
892 // the system stream's tone generator.
893 if (mPlayMasterStreamTones) {
894 streamType = AudioManager.STREAM_SYSTEM;
895 } else {
896 return null;
897 }
898 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800899 synchronized (this) {
900 if (mToneGenerators[streamType] == null) {
Eric Laurent733a42b2011-01-19 10:41:57 -0800901 try {
902 mToneGenerators[streamType] = new ToneGenerator(streamType, MAX_VOLUME);
903 } catch (RuntimeException e) {
904 if (LOGD) {
905 Log.d(TAG, "ToneGenerator constructor failed with "
906 + "RuntimeException: " + e);
907 }
908 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800909 }
Eric Laurent733a42b2011-01-19 10:41:57 -0800910 return mToneGenerators[streamType];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800911 }
912 }
913
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800914
915 /**
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800916 * Switch between icons because Bluetooth music is same as music volume, but with
917 * different icons.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800918 */
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800919 private void setMusicIcon(int resId, int resMuteId) {
920 StreamControl sc = mStreamControls.get(AudioManager.STREAM_MUSIC);
921 if (sc != null) {
922 sc.iconRes = resId;
923 sc.iconMuteRes = resMuteId;
924 sc.icon.setImageResource(isMuted(sc.streamType) ? sc.iconMuteRes : sc.iconRes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800926 }
927
928 protected void onFreeResources() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800929 synchronized (this) {
930 for (int i = mToneGenerators.length - 1; i >= 0; i--) {
931 if (mToneGenerators[i] != null) {
932 mToneGenerators[i].release();
933 }
934 mToneGenerators[i] = null;
935 }
936 }
937 }
938
939 @Override
940 public void handleMessage(Message msg) {
941 switch (msg.what) {
942
943 case MSG_VOLUME_CHANGED: {
944 onVolumeChanged(msg.arg1, msg.arg2);
945 break;
946 }
947
Mike Lockwoodce952c82011-11-14 10:47:42 -0800948 case MSG_MUTE_CHANGED: {
949 onMuteChanged(msg.arg1, msg.arg2);
950 break;
951 }
952
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800953 case MSG_FREE_RESOURCES: {
954 onFreeResources();
955 break;
956 }
957
958 case MSG_STOP_SOUNDS: {
959 onStopSounds();
960 break;
961 }
962
963 case MSG_PLAY_SOUND: {
964 onPlaySound(msg.arg1, msg.arg2);
965 break;
966 }
967
968 case MSG_VIBRATE: {
969 onVibrate();
970 break;
971 }
972
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800973 case MSG_TIMEOUT: {
974 if (mDialog.isShowing()) {
975 mDialog.dismiss();
976 mActiveStreamType = -1;
977 }
Eric Laurentfde16d52012-12-03 14:42:39 -0800978 synchronized (sConfirmSafeVolumeLock) {
979 if (sConfirmSafeVolumeDialog != null) {
980 sConfirmSafeVolumeDialog.dismiss();
981 }
982 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800983 break;
984 }
985 case MSG_RINGER_MODE_CHANGED: {
986 if (mDialog.isShowing()) {
987 updateStates();
988 }
989 break;
990 }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700991
992 case MSG_REMOTE_VOLUME_CHANGED: {
993 onRemoteVolumeChanged(msg.arg1, msg.arg2);
994 break;
995 }
996
997 case MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN:
998 onRemoteVolumeUpdateIfShown();
999 break;
1000
1001 case MSG_SLIDER_VISIBILITY_CHANGED:
1002 onSliderVisibilityChanged(msg.arg1, msg.arg2);
1003 break;
Eric Laurentc34dcc12012-09-10 13:51:52 -07001004
1005 case MSG_DISPLAY_SAFE_VOLUME_WARNING:
Eric Laurentfde16d52012-12-03 14:42:39 -08001006 onDisplaySafeVolumeWarning(msg.arg1);
Eric Laurentc34dcc12012-09-10 13:51:52 -07001007 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001008 }
1009 }
1010
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001011 private void resetTimeout() {
1012 removeMessages(MSG_TIMEOUT);
1013 sendMessageDelayed(obtainMessage(MSG_TIMEOUT), TIMEOUT_DELAY);
1014 }
1015
Amith Yamasanibaf6dbf2011-08-18 17:40:29 -07001016 private void forceTimeout() {
1017 removeMessages(MSG_TIMEOUT);
1018 sendMessage(obtainMessage(MSG_TIMEOUT));
1019 }
1020
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001021 public void onProgressChanged(SeekBar seekBar, int progress,
1022 boolean fromUser) {
1023 final Object tag = seekBar.getTag();
1024 if (fromUser && tag instanceof StreamControl) {
1025 StreamControl sc = (StreamControl) tag;
Mike Lockwood8dc1dab2011-10-27 09:52:41 -04001026 if (getStreamVolume(sc.streamType) != progress) {
1027 setStreamVolume(sc.streamType, progress, 0);
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001028 }
1029 }
1030 resetTimeout();
1031 }
1032
1033 public void onStartTrackingTouch(SeekBar seekBar) {
1034 }
1035
1036 public void onStopTrackingTouch(SeekBar seekBar) {
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -07001037 final Object tag = seekBar.getTag();
1038 if (tag instanceof StreamControl) {
1039 StreamControl sc = (StreamControl) tag;
1040 // because remote volume updates are asynchronous, AudioService might have received
1041 // a new remote volume value since the finger adjusted the slider. So when the
1042 // progress of the slider isn't being tracked anymore, adjust the slider to the last
1043 // "published" remote volume value, so the UI reflects the actual volume.
1044 if (sc.streamType == AudioService.STREAM_REMOTE_MUSIC) {
1045 seekBar.setProgress(getStreamVolume(AudioService.STREAM_REMOTE_MUSIC));
1046 }
1047 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001048 }
1049
1050 public void onClick(View v) {
1051 if (v == mMoreButton) {
1052 expand();
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001053 }
1054 resetTimeout();
1055 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001056}