blob: b6d67671d59d244336e857ad708b5009df202aed [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
John Spurlock3346a802014-05-20 16:25:37 -040017package com.android.systemui.volume;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018
Eric Laurentc34dcc12012-09-10 13:51:52 -070019import android.app.AlertDialog;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080020import android.app.Dialog;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080021import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.Context;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080023import android.content.DialogInterface;
John Spurlock86005342014-05-23 11:58:00 -040024import android.content.DialogInterface.OnDismissListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.Intent;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080026import android.content.IntentFilter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.content.res.Resources;
John Spurlock2078caf2014-05-29 22:20:14 -040028import android.graphics.PixelFormat;
29import android.graphics.drawable.ColorDrawable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import 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;
RoboErik19c95182014-06-23 15:38:48 -070035import android.media.VolumeProvider;
36import android.media.session.MediaController;
37import android.media.session.MediaController.VolumeInfo;
Marco Nelissen69f593c2009-07-28 09:55:04 -070038import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.os.Handler;
40import android.os.Message;
41import android.os.Vibrator;
John Spurlockae641c92014-06-30 18:11:40 -040042import android.provider.Settings.Global;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.util.Log;
John Spurlock3346a802014-05-20 16:25:37 -040044import android.view.Gravity;
45import android.view.LayoutInflater;
46import android.view.MotionEvent;
47import android.view.View;
John Spurlock7f1df5e2014-05-31 19:11:40 -040048import android.view.View.OnClickListener;
John Spurlock3346a802014-05-20 16:25:37 -040049import android.view.ViewGroup;
John Spurlock86005342014-05-23 11:58:00 -040050import android.view.ViewStub;
John Spurlock3346a802014-05-20 16:25:37 -040051import android.view.Window;
52import android.view.WindowManager;
Amith Yamasani284e6302011-09-16 18:24:47 -070053import android.view.WindowManager.LayoutParams;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054import android.widget.ImageView;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080055import android.widget.SeekBar;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080056import android.widget.SeekBar.OnSeekBarChangeListener;
57
John Spurlock86005342014-05-23 11:58:00 -040058import com.android.internal.R;
59import com.android.systemui.statusbar.policy.ZenModeController;
60
Amith Yamasani2bbdd772011-02-02 18:54:13 -080061import java.util.HashMap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062
63/**
John Spurlock3346a802014-05-20 16:25:37 -040064 * Handles the user interface for the volume keys.
Dianne Hackborne8ecde12011-08-03 18:55:19 -070065 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 * @hide
67 */
John Spurlock3346a802014-05-20 16:25:37 -040068public class VolumePanel extends Handler {
John Spurlockae641c92014-06-30 18:11:40 -040069 private static final String TAG = "VolumePanel";
70 private static boolean LOGD = Log.isLoggable(TAG, Log.DEBUG);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071
John Spurlock3346a802014-05-20 16:25:37 -040072 private static final int PLAY_SOUND_DELAY = AudioService.PLAY_SOUND_DELAY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073
74 /**
75 * The delay before vibrating. This small period exists so if the user is
76 * moving to silent mode, it will not emit a short vibrate (it normally
77 * would since vibrate is between normal mode and silent mode using hardware
78 * keys).
79 */
80 public static final int VIBRATE_DELAY = 300;
81
82 private static final int VIBRATE_DURATION = 300;
83 private static final int BEEP_DURATION = 150;
84 private static final int MAX_VOLUME = 100;
85 private static final int FREE_DELAY = 10000;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080086 private static final int TIMEOUT_DELAY = 3000;
John Spurlock3bd4fee2014-05-29 20:51:09 -040087 private static final int TIMEOUT_DELAY_EXPANDED = 10000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088
89 private static final int MSG_VOLUME_CHANGED = 0;
90 private static final int MSG_FREE_RESOURCES = 1;
91 private static final int MSG_PLAY_SOUND = 2;
92 private static final int MSG_STOP_SOUNDS = 3;
93 private static final int MSG_VIBRATE = 4;
Amith Yamasani2bbdd772011-02-02 18:54:13 -080094 private static final int MSG_TIMEOUT = 5;
95 private static final int MSG_RINGER_MODE_CHANGED = 6;
Mike Lockwoodce952c82011-11-14 10:47:42 -080096 private static final int MSG_MUTE_CHANGED = 7;
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -070097 private static final int MSG_REMOTE_VOLUME_CHANGED = 8;
98 private static final int MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN = 9;
99 private static final int MSG_SLIDER_VISIBILITY_CHANGED = 10;
Eric Laurentc34dcc12012-09-10 13:51:52 -0700100 private static final int MSG_DISPLAY_SAFE_VOLUME_WARNING = 11;
John Spurlock86005342014-05-23 11:58:00 -0400101 private static final int MSG_LAYOUT_DIRECTION = 12;
102 private static final int MSG_ZEN_MODE_CHANGED = 13;
John Spurlockae641c92014-06-30 18:11:40 -0400103 private static final int MSG_USER_ACTIVITY = 14;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400105 // Pseudo stream type for master volume
Mike Lockwood47676902011-11-08 10:31:21 -0800106 private static final int STREAM_MASTER = -100;
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700107 // Pseudo stream type for remote volume is defined in AudioService.STREAM_REMOTE_MUSIC
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400108
John Spurlock86005342014-05-23 11:58:00 -0400109 private final String mTag;
John Spurlock3346a802014-05-20 16:25:37 -0400110 protected final Context mContext;
111 private final AudioManager mAudioManager;
John Spurlock86005342014-05-23 11:58:00 -0400112 private final ZenModeController mZenController;
Marco Nelissen69f593c2009-07-28 09:55:04 -0700113 private boolean mRingIsSilent;
Amith Yamasani71def772011-10-12 12:25:24 -0700114 private boolean mVoiceCapable;
John Spurlock86005342014-05-23 11:58:00 -0400115 private boolean mZenModeCapable;
John Spurlock3bd4fee2014-05-29 20:51:09 -0400116 private int mTimeoutDelay = TIMEOUT_DELAY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117
Christopher Tatec4b78d22012-05-22 13:57:58 -0700118 // True if we want to play tones on the system stream when the master stream is specified.
119 private final boolean mPlayMasterStreamTones;
120
John Spurlock86005342014-05-23 11:58:00 -0400121
122 /** Volume panel content view */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123 private final View mView;
John Spurlock86005342014-05-23 11:58:00 -0400124 /** Dialog hosting the panel, if not embedded */
125 private final Dialog mDialog;
126 /** Parent view hosting the panel, if embedded */
127 private final ViewGroup mParent;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800128
Amith Yamasanibaf6dbf2011-08-18 17:40:29 -0700129 /** The visible portion of the volume overlay */
130 private final ViewGroup mPanel;
John Spurlock86005342014-05-23 11:58:00 -0400131 /** Contains the slider and its touchable icons */
132 private final ViewGroup mSliderPanel;
John Spurlock86005342014-05-23 11:58:00 -0400133 /** The zen mode configuration panel view stub */
134 private final ViewStub mZenPanelStub;
135 /** The zen mode configuration panel view, once inflated */
136 private ZenModePanel mZenPanel;
John Spurlock86005342014-05-23 11:58:00 -0400137
John Spurlockae641c92014-06-30 18:11:40 -0400138 private Callback mCallback;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800139
140 /** Currently active stream that shows up at the top of the list of sliders */
141 private int mActiveStreamType = -1;
142 /** All the slider controls mapped by stream type */
143 private HashMap<Integer,StreamControl> mStreamControls;
144
Amith Yamasani71def772011-10-12 12:25:24 -0700145 private enum StreamResources {
146 BluetoothSCOStream(AudioManager.STREAM_BLUETOOTH_SCO,
147 R.string.volume_icon_description_bluetooth,
148 R.drawable.ic_audio_bt,
149 R.drawable.ic_audio_bt,
150 false),
151 RingerStream(AudioManager.STREAM_RING,
152 R.string.volume_icon_description_ringer,
John Spurlock86005342014-05-23 11:58:00 -0400153 com.android.systemui.R.drawable.ic_ringer_audible,
154 com.android.systemui.R.drawable.ic_ringer_silent,
Amith Yamasani71def772011-10-12 12:25:24 -0700155 false),
156 VoiceStream(AudioManager.STREAM_VOICE_CALL,
157 R.string.volume_icon_description_incall,
158 R.drawable.ic_audio_phone,
159 R.drawable.ic_audio_phone,
160 false),
Amith Yamasani92e1b2d2011-10-14 17:24:47 -0700161 AlarmStream(AudioManager.STREAM_ALARM,
162 R.string.volume_alarm,
163 R.drawable.ic_audio_alarm,
164 R.drawable.ic_audio_alarm_mute,
165 false),
Amith Yamasani71def772011-10-12 12:25:24 -0700166 MediaStream(AudioManager.STREAM_MUSIC,
167 R.string.volume_icon_description_media,
168 R.drawable.ic_audio_vol,
169 R.drawable.ic_audio_vol_mute,
170 true),
171 NotificationStream(AudioManager.STREAM_NOTIFICATION,
172 R.string.volume_icon_description_notification,
John Spurlock86005342014-05-23 11:58:00 -0400173 com.android.systemui.R.drawable.ic_ringer_audible,
174 com.android.systemui.R.drawable.ic_ringer_silent,
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400175 true),
176 // for now, use media resources for master volume
177 MasterStream(STREAM_MASTER,
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700178 R.string.volume_icon_description_media, //FIXME should have its own description
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400179 R.drawable.ic_audio_vol,
180 R.drawable.ic_audio_vol_mute,
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700181 false),
182 RemoteStream(AudioService.STREAM_REMOTE_MUSIC,
183 R.string.volume_icon_description_media, //FIXME should have its own description
184 R.drawable.ic_media_route_on_holo_dark,
185 R.drawable.ic_media_route_disabled_holo_dark,
186 false);// will be dynamically updated
Amith Yamasani71def772011-10-12 12:25:24 -0700187
188 int streamType;
189 int descRes;
190 int iconRes;
191 int iconMuteRes;
192 // RING, VOICE_CALL & BLUETOOTH_SCO are hidden unless explicitly requested
193 boolean show;
194
195 StreamResources(int streamType, int descRes, int iconRes, int iconMuteRes, boolean show) {
196 this.streamType = streamType;
197 this.descRes = descRes;
198 this.iconRes = iconRes;
199 this.iconMuteRes = iconMuteRes;
200 this.show = show;
201 }
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700202 }
Amith Yamasani71def772011-10-12 12:25:24 -0700203
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800204 // List of stream types and their order
Amith Yamasani71def772011-10-12 12:25:24 -0700205 private static final StreamResources[] STREAMS = {
206 StreamResources.BluetoothSCOStream,
207 StreamResources.RingerStream,
208 StreamResources.VoiceStream,
209 StreamResources.MediaStream,
Amith Yamasani92e1b2d2011-10-14 17:24:47 -0700210 StreamResources.NotificationStream,
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400211 StreamResources.AlarmStream,
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700212 StreamResources.MasterStream,
213 StreamResources.RemoteStream
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800214 };
215
216 /** Object that contains data for each slider */
217 private class StreamControl {
218 int streamType;
RoboErik19c95182014-06-23 15:38:48 -0700219 MediaController controller;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800220 ViewGroup group;
221 ImageView icon;
222 SeekBar seekbarView;
223 int iconRes;
224 int iconMuteRes;
225 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226
227 // Synchronize when accessing this
228 private ToneGenerator mToneGenerators[];
229 private Vibrator mVibrator;
230
Eric Laurentc34dcc12012-09-10 13:51:52 -0700231 private static AlertDialog sConfirmSafeVolumeDialog;
Eric Laurent0516a9e2012-09-19 11:53:03 -0700232 private static Object sConfirmSafeVolumeLock = new Object();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700233
234 private static class WarningDialogReceiver extends BroadcastReceiver
235 implements DialogInterface.OnDismissListener {
Eric Laurentfde16d52012-12-03 14:42:39 -0800236 private final Context mContext;
237 private final Dialog mDialog;
238 private final VolumePanel mVolumePanel;
Eric Laurentc34dcc12012-09-10 13:51:52 -0700239
Eric Laurentfde16d52012-12-03 14:42:39 -0800240 WarningDialogReceiver(Context context, Dialog dialog, VolumePanel volumePanel) {
Eric Laurentc34dcc12012-09-10 13:51:52 -0700241 mContext = context;
242 mDialog = dialog;
Eric Laurentfde16d52012-12-03 14:42:39 -0800243 mVolumePanel = volumePanel;
Eric Laurentc34dcc12012-09-10 13:51:52 -0700244 IntentFilter filter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
245 context.registerReceiver(this, filter);
246 }
247
248 @Override
249 public void onReceive(Context context, Intent intent) {
250 mDialog.cancel();
Eric Laurentfde16d52012-12-03 14:42:39 -0800251 cleanUp();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700252 }
253
Alan Viverette494fb7b2014-04-10 18:12:56 -0700254 @Override
Eric Laurentc34dcc12012-09-10 13:51:52 -0700255 public void onDismiss(DialogInterface unused) {
256 mContext.unregisterReceiver(this);
Eric Laurentfde16d52012-12-03 14:42:39 -0800257 cleanUp();
258 }
259
260 private void cleanUp() {
Eric Laurent0516a9e2012-09-19 11:53:03 -0700261 synchronized (sConfirmSafeVolumeLock) {
262 sConfirmSafeVolumeDialog = null;
263 }
Eric Laurentfde16d52012-12-03 14:42:39 -0800264 mVolumePanel.forceTimeout();
265 mVolumePanel.updateStates();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700266 }
267 }
268
269
John Spurlock86005342014-05-23 11:58:00 -0400270 public VolumePanel(Context context, ViewGroup parent, ZenModeController zenController) {
John Spurlockae641c92014-06-30 18:11:40 -0400271 mTag = String.format("%s.%s.%08x", TAG, parent == null ? "Dialog" : "Embed", hashCode());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 mContext = context;
John Spurlock86005342014-05-23 11:58:00 -0400273 mParent = parent;
274 mZenController = zenController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400277 // For now, only show master volume if master volume is supported
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700278 final Resources res = context.getResources();
279 final boolean useMasterVolume = res.getBoolean(R.bool.config_useMasterVolume);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400280 if (useMasterVolume) {
281 for (int i = 0; i < STREAMS.length; i++) {
282 StreamResources streamRes = STREAMS[i];
283 streamRes.show = (streamRes.streamType == STREAM_MASTER);
284 }
285 }
John Spurlock86005342014-05-23 11:58:00 -0400286 if (LOGD) Log.d(mTag, String.format("new VolumePanel hasParent=%s", parent != null));
John Spurlock86005342014-05-23 11:58:00 -0400287 if (parent == null) {
288 // dialog mode
289 mDialog = new Dialog(context) {
290 @Override
291 public boolean onTouchEvent(MotionEvent event) {
292 if (isShowing() && event.getAction() == MotionEvent.ACTION_OUTSIDE &&
293 sConfirmSafeVolumeDialog == null) {
294 forceTimeout();
295 return true;
296 }
297 return false;
Amith Yamasani284e6302011-09-16 18:24:47 -0700298 }
John Spurlock86005342014-05-23 11:58:00 -0400299 };
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700300
John Spurlock86005342014-05-23 11:58:00 -0400301 // Change some window properties
302 final Window window = mDialog.getWindow();
303 final LayoutParams lp = window.getAttributes();
304 lp.token = null;
305 // Offset from the top
306 lp.y = res.getDimensionPixelOffset(com.android.systemui.R.dimen.volume_panel_top);
John Spurlockae641c92014-06-30 18:11:40 -0400307 lp.type = LayoutParams.TYPE_STATUS_BAR_PANEL;
John Spurlock2078caf2014-05-29 22:20:14 -0400308 lp.format = PixelFormat.TRANSLUCENT;
John Spurlockae641c92014-06-30 18:11:40 -0400309 lp.windowAnimations = com.android.systemui.R.style.VolumePanelAnimation;
310 lp.gravity = Gravity.TOP;
John Spurlock86005342014-05-23 11:58:00 -0400311 window.setAttributes(lp);
John Spurlock86005342014-05-23 11:58:00 -0400312 window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
313 window.requestFeature(Window.FEATURE_NO_TITLE);
314 window.addFlags(LayoutParams.FLAG_NOT_FOCUSABLE
315 | LayoutParams.FLAG_NOT_TOUCH_MODAL
John Spurlock2078caf2014-05-29 22:20:14 -0400316 | LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH
317 | LayoutParams.FLAG_HARDWARE_ACCELERATED);
John Spurlock86005342014-05-23 11:58:00 -0400318 mDialog.setCanceledOnTouchOutside(true);
John Spurlock7f1df5e2014-05-31 19:11:40 -0400319 mDialog.setContentView(com.android.systemui.R.layout.volume_dialog);
John Spurlock86005342014-05-23 11:58:00 -0400320 mDialog.setOnDismissListener(new OnDismissListener() {
321 @Override
322 public void onDismiss(DialogInterface dialog) {
323 mActiveStreamType = -1;
324 mAudioManager.forceVolumeControlStream(mActiveStreamType);
John Spurlockae641c92014-06-30 18:11:40 -0400325 setZenPanelVisible(false);
John Spurlock86005342014-05-23 11:58:00 -0400326 }
327 });
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700328
John Spurlock86005342014-05-23 11:58:00 -0400329 mDialog.create();
John Spurlock7f1df5e2014-05-31 19:11:40 -0400330 // temporary workaround, until we support window-level shadows
John Spurlock2078caf2014-05-29 22:20:14 -0400331 mDialog.getWindow().setBackgroundDrawable(new ColorDrawable(0x00000000));
Alan Viverette494fb7b2014-04-10 18:12:56 -0700332
John Spurlock86005342014-05-23 11:58:00 -0400333 mView = window.findViewById(R.id.content);
334 mView.setOnTouchListener(new View.OnTouchListener() {
335 @Override
336 public boolean onTouch(View v, MotionEvent event) {
337 resetTimeout();
338 return false;
339 }
340 });
Alan Viverette494fb7b2014-04-10 18:12:56 -0700341
John Spurlock86005342014-05-23 11:58:00 -0400342 } else {
343 // embedded mode
344 mDialog = null;
John Spurlock7f1df5e2014-05-31 19:11:40 -0400345 mView = LayoutInflater.from(mContext).inflate(
John Spurlock7f8f22a2014-07-02 18:54:17 -0400346 com.android.systemui.R.layout.volume_panel, parent, false);
John Spurlock86005342014-05-23 11:58:00 -0400347 }
348 mPanel = (ViewGroup) mView.findViewById(com.android.systemui.R.id.visible_panel);
349 mSliderPanel = (ViewGroup) mView.findViewById(com.android.systemui.R.id.slider_panel);
John Spurlock86005342014-05-23 11:58:00 -0400350 mZenPanelStub = (ViewStub)mView.findViewById(com.android.systemui.R.id.zen_panel_stub);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800351
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800352 mToneGenerators = new ToneGenerator[AudioSystem.getNumStreamTypes()];
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700353 mVibrator = (Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE);
Amith Yamasani71def772011-10-12 12:25:24 -0700354 mVoiceCapable = context.getResources().getBoolean(R.bool.config_voice_capable);
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700355
John Spurlock86005342014-05-23 11:58:00 -0400356 mZenModeCapable = !useMasterVolume && mZenController != null;
John Spurlockae641c92014-06-30 18:11:40 -0400357 updateZenMode(mZenController != null ? mZenController.getZen() : Global.ZEN_MODE_OFF);
John Spurlock86005342014-05-23 11:58:00 -0400358 mZenController.addCallback(mZenCallback);
Amith Yamasani42722bf2011-07-22 10:34:27 -0700359
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700360 final boolean masterVolumeOnly = res.getBoolean(R.bool.config_useMasterVolume);
361 final boolean masterVolumeKeySounds = res.getBoolean(R.bool.config_useVolumeKeySounds);
Christopher Tatec4b78d22012-05-22 13:57:58 -0700362 mPlayMasterStreamTones = masterVolumeOnly && masterVolumeKeySounds;
363
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800364 listenToRingerMode();
365 }
366
John Spurlock7f8f22a2014-07-02 18:54:17 -0400367 public View getContentView() {
368 return mView;
369 }
370
John Spurlock86005342014-05-23 11:58:00 -0400371 private void setLayoutDirection(int layoutDirection) {
Fabrice Di Meglio8c028842013-01-09 18:20:38 -0800372 mPanel.setLayoutDirection(layoutDirection);
373 updateStates();
374 }
375
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800376 private void listenToRingerMode() {
377 final IntentFilter filter = new IntentFilter();
378 filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
379 mContext.registerReceiver(new BroadcastReceiver() {
Alan Viverette494fb7b2014-04-10 18:12:56 -0700380 @Override
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800381 public void onReceive(Context context, Intent intent) {
382 final String action = intent.getAction();
383
384 if (AudioManager.RINGER_MODE_CHANGED_ACTION.equals(action)) {
385 removeMessages(MSG_RINGER_MODE_CHANGED);
386 sendMessage(obtainMessage(MSG_RINGER_MODE_CHANGED));
387 }
388 }
389 }, filter);
390 }
391
392 private boolean isMuted(int streamType) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400393 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700394 return mAudioManager.isMasterMute();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700395 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
RoboErik19c95182014-06-23 15:38:48 -0700396 // TODO do we need to support a distinct mute property for remote?
397 return false;
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400398 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700399 return mAudioManager.isStreamMute(streamType);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400400 }
401 }
402
403 private int getStreamMaxVolume(int streamType) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400404 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700405 return mAudioManager.getMasterMaxVolume();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700406 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
RoboErik19c95182014-06-23 15:38:48 -0700407 if (mStreamControls != null) {
408 StreamControl sc = mStreamControls.get(streamType);
409 if (sc != null && sc.controller != null) {
410 VolumeInfo vi = sc.controller.getVolumeInfo();
411 return vi.getMaxVolume();
412 }
413 }
414 return -1;
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400415 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700416 return mAudioManager.getStreamMaxVolume(streamType);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400417 }
418 }
419
420 private int getStreamVolume(int streamType) {
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400421 if (streamType == STREAM_MASTER) {
Eric Laurent8c787522012-05-14 14:09:43 -0700422 return mAudioManager.getMasterVolume();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700423 } else if (streamType == AudioService.STREAM_REMOTE_MUSIC) {
RoboErik19c95182014-06-23 15:38:48 -0700424 if (mStreamControls != null) {
425 StreamControl sc = mStreamControls.get(streamType);
426 if (sc != null && sc.controller != null) {
427 VolumeInfo vi = sc.controller.getVolumeInfo();
428 return vi.getCurrentVolume();
429 }
430 }
431 return -1;
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400432 } else {
Eric Laurent8c787522012-05-14 14:09:43 -0700433 return mAudioManager.getStreamVolume(streamType);
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400434 }
435 }
436
RoboErik19c95182014-06-23 15:38:48 -0700437 private void setStreamVolume(StreamControl sc, int index, int flags) {
438 if (sc.streamType == AudioService.STREAM_REMOTE_MUSIC) {
439 if (sc.controller != null) {
440 sc.controller.setVolumeTo(index, flags);
441 } else {
Jean-Michel Trivi65820412014-06-30 12:10:44 -0700442 Log.w(mTag, "Adjusting remote volume without a controller!");
RoboErik19c95182014-06-23 15:38:48 -0700443 }
444 } else if (getStreamVolume(sc.streamType) != index) {
445 if (sc.streamType == STREAM_MASTER) {
446 mAudioManager.setMasterVolume(index, flags);
447 } else {
448 mAudioManager.setStreamVolume(sc.streamType, index, flags);
449 }
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400450 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800451 }
452
453 private void createSliders() {
Alan Viverette494fb7b2014-04-10 18:12:56 -0700454 final Resources res = mContext.getResources();
455 final LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(
456 Context.LAYOUT_INFLATER_SERVICE);
457
Amith Yamasani71def772011-10-12 12:25:24 -0700458 mStreamControls = new HashMap<Integer, StreamControl>(STREAMS.length);
Alan Viverette494fb7b2014-04-10 18:12:56 -0700459
Amith Yamasani71def772011-10-12 12:25:24 -0700460 for (int i = 0; i < STREAMS.length; i++) {
461 StreamResources streamRes = STREAMS[i];
Alan Viverette494fb7b2014-04-10 18:12:56 -0700462
463 final int streamType = streamRes.streamType;
Alan Viverette494fb7b2014-04-10 18:12:56 -0700464
465 final StreamControl sc = new StreamControl();
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700466 sc.streamType = streamType;
John Spurlock86005342014-05-23 11:58:00 -0400467 sc.group = (ViewGroup) inflater.inflate(
468 com.android.systemui.R.layout.volume_panel_item, null);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800469 sc.group.setTag(sc);
John Spurlock86005342014-05-23 11:58:00 -0400470 sc.icon = (ImageView) sc.group.findViewById(com.android.systemui.R.id.stream_icon);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800471 sc.icon.setTag(sc);
Amith Yamasani71def772011-10-12 12:25:24 -0700472 sc.icon.setContentDescription(res.getString(streamRes.descRes));
473 sc.iconRes = streamRes.iconRes;
474 sc.iconMuteRes = streamRes.iconMuteRes;
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800475 sc.icon.setImageResource(sc.iconRes);
John Spurlock7f1df5e2014-05-31 19:11:40 -0400476 sc.icon.setClickable(isNotificationOrRing(streamType));
477 if (sc.icon.isClickable()) {
478 sc.icon.setOnClickListener(new OnClickListener() {
479 @Override
480 public void onClick(View v) {
481 resetTimeout();
482 toggle(sc);
483 }
484 });
John Spurlock7f1df5e2014-05-31 19:11:40 -0400485 }
John Spurlock86005342014-05-23 11:58:00 -0400486 sc.seekbarView = (SeekBar) sc.group.findViewById(com.android.systemui.R.id.seekbar);
Alan Viverette494fb7b2014-04-10 18:12:56 -0700487 final int plusOne = (streamType == AudioSystem.STREAM_BLUETOOTH_SCO ||
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700488 streamType == AudioSystem.STREAM_VOICE_CALL) ? 1 : 0;
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400489 sc.seekbarView.setMax(getStreamMaxVolume(streamType) + plusOne);
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700490 sc.seekbarView.setOnSeekBarChangeListener(mSeekListener);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800491 sc.seekbarView.setTag(sc);
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700492 mStreamControls.put(streamType, sc);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800493 }
494 }
495
John Spurlock7f1df5e2014-05-31 19:11:40 -0400496 private void toggle(StreamControl sc) {
497 if (mAudioManager.getRingerMode() == AudioManager.RINGER_MODE_NORMAL) {
498 mAudioManager.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
499 postVolumeChanged(sc.streamType, AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_VIBRATE);
500 } else {
501 mAudioManager.setRingerMode(AudioManager.RINGER_MODE_NORMAL);
502 postVolumeChanged(sc.streamType, AudioManager.FLAG_PLAY_SOUND);
503 }
504 }
505
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800506 private void reorderSliders(int activeStreamType) {
John Spurlock86005342014-05-23 11:58:00 -0400507 mSliderPanel.removeAllViews();
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800508
Alan Viverette494fb7b2014-04-10 18:12:56 -0700509 final StreamControl active = mStreamControls.get(activeStreamType);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800510 if (active == null) {
John Spurlockae641c92014-06-30 18:11:40 -0400511 Log.e(TAG, "Missing stream type! - " + activeStreamType);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800512 mActiveStreamType = -1;
513 } else {
John Spurlock86005342014-05-23 11:58:00 -0400514 mSliderPanel.addView(active.group);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800515 mActiveStreamType = activeStreamType;
516 active.group.setVisibility(View.VISIBLE);
517 updateSlider(active);
John Spurlockae641c92014-06-30 18:11:40 -0400518 setZenPanelVisible(isNotificationOrRing(mActiveStreamType));
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800519 }
520 }
521
522 /** Update the mute and progress state of a slider */
523 private void updateSlider(StreamControl sc) {
Eric Laurent8c787522012-05-14 14:09:43 -0700524 sc.seekbarView.setProgress(getStreamVolume(sc.streamType));
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800525 final boolean muted = isMuted(sc.streamType);
Fabrice Di Meglio8c028842013-01-09 18:20:38 -0800526 // Force reloading the image resource
527 sc.icon.setImageDrawable(null);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800528 sc.icon.setImageResource(muted ? sc.iconMuteRes : sc.iconRes);
John Spurlock7f1df5e2014-05-31 19:11:40 -0400529 if (isNotificationOrRing(sc.streamType) &&
Eric Laurent8c787522012-05-14 14:09:43 -0700530 mAudioManager.getRingerMode() == AudioManager.RINGER_MODE_VIBRATE) {
John Spurlock86005342014-05-23 11:58:00 -0400531 sc.icon.setImageResource(com.android.systemui.R.drawable.ic_ringer_vibrate);
Amith Yamasanic696a532011-10-28 17:02:37 -0700532 }
John Spurlock7f1df5e2014-05-31 19:11:40 -0400533 updateSliderEnabled(sc, muted, false);
534 }
535
John Spurlock5f640e42014-05-31 20:15:59 -0400536 private void updateSliderEnabled(final StreamControl sc, boolean muted, boolean fixedVolume) {
537 final boolean wasEnabled = sc.seekbarView.isEnabled();
John Spurlockae641c92014-06-30 18:11:40 -0400538 final boolean isRinger = isNotificationOrRing(sc.streamType);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700539 if (sc.streamType == AudioService.STREAM_REMOTE_MUSIC) {
540 // never disable touch interactions for remote playback, the muting is not tied to
541 // the state of the phone.
RoboErik19c95182014-06-23 15:38:48 -0700542 sc.seekbarView.setEnabled(!fixedVolume);
John Spurlock7f1df5e2014-05-31 19:11:40 -0400543 } else if (fixedVolume ||
544 (sc.streamType != mAudioManager.getMasterStreamType() && muted) ||
Eric Laurentfde16d52012-12-03 14:42:39 -0800545 (sConfirmSafeVolumeDialog != null)) {
Eric Laurent8c787522012-05-14 14:09:43 -0700546 sc.seekbarView.setEnabled(false);
John Spurlockae641c92014-06-30 18:11:40 -0400547 } else if (isRinger && mAudioManager.getRingerMode() == AudioManager.RINGER_MODE_SILENT) {
John Spurlock7f1df5e2014-05-31 19:11:40 -0400548 sc.seekbarView.setEnabled(false);
John Spurlockae641c92014-06-30 18:11:40 -0400549 sc.icon.setEnabled(false);
550 sc.icon.setClickable(false);
Eric Laurent8c787522012-05-14 14:09:43 -0700551 } else {
552 sc.seekbarView.setEnabled(true);
John Spurlockae641c92014-06-30 18:11:40 -0400553 sc.icon.setEnabled(true);
Eric Laurent8c787522012-05-14 14:09:43 -0700554 }
John Spurlockae641c92014-06-30 18:11:40 -0400555 // show the silent hint when the disabled slider is touched in silent mode
556 if (isRinger && wasEnabled != sc.seekbarView.isEnabled()) {
John Spurlock5f640e42014-05-31 20:15:59 -0400557 if (sc.seekbarView.isEnabled()) {
John Spurlockae641c92014-06-30 18:11:40 -0400558 sc.group.setOnTouchListener(null);
559 sc.icon.setClickable(true);
John Spurlock5f640e42014-05-31 20:15:59 -0400560 } else {
John Spurlockae641c92014-06-30 18:11:40 -0400561 final View.OnTouchListener showHintOnTouch = new View.OnTouchListener() {
John Spurlock5f640e42014-05-31 20:15:59 -0400562 @Override
563 public boolean onTouch(View v, MotionEvent event) {
564 resetTimeout();
John Spurlockae641c92014-06-30 18:11:40 -0400565 showSilentHint();
John Spurlock5f640e42014-05-31 20:15:59 -0400566 return false;
567 }
John Spurlockae641c92014-06-30 18:11:40 -0400568 };
569 sc.group.setOnTouchListener(showHintOnTouch);
John Spurlock5f640e42014-05-31 20:15:59 -0400570 }
571 }
572 }
573
John Spurlockae641c92014-06-30 18:11:40 -0400574 private void showSilentHint() {
575 if (mZenPanel != null) {
576 mZenPanel.showSilentHint();
577 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800578 }
579
John Spurlock7f1df5e2014-05-31 19:11:40 -0400580 private static boolean isNotificationOrRing(int streamType) {
581 return streamType == AudioManager.STREAM_RING
582 || streamType == AudioManager.STREAM_NOTIFICATION;
583 }
584
John Spurlockae641c92014-06-30 18:11:40 -0400585 public void setCallback(Callback callback) {
586 mCallback = callback;
John Spurlock86005342014-05-23 11:58:00 -0400587 }
588
John Spurlockae641c92014-06-30 18:11:40 -0400589 private void setZenPanelVisible(boolean visible) {
590 if (LOGD) Log.d(mTag, "setZenPanelVisible " + visible + " mZenPanel=" + mZenPanel);
591 if (visible) {
592 if (mZenPanel == null) {
593 mZenPanel = (ZenModePanel) mZenPanelStub.inflate();
594 mZenPanel.init(mZenController, mDialog != null ? 'D' : 'E');
595 mZenPanel.setCallback(new ZenModePanel.Callback() {
596 @Override
597 public void onMoreSettings() {
598 if (mCallback != null) {
599 mCallback.onZenSettings();
600 }
John Spurlock86005342014-05-23 11:58:00 -0400601 }
John Spurlock86005342014-05-23 11:58:00 -0400602
John Spurlockae641c92014-06-30 18:11:40 -0400603 @Override
604 public void onInteraction() {
605 resetTimeout();
John Spurlock86005342014-05-23 11:58:00 -0400606 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800607
John Spurlockae641c92014-06-30 18:11:40 -0400608 @Override
609 public void onExpanded(boolean expanded) {
610 mTimeoutDelay = expanded ? TIMEOUT_DELAY_EXPANDED : TIMEOUT_DELAY;
611 resetTimeout();
612 }
613 });
614 }
615 mZenPanel.setVisibility(View.VISIBLE);
616 resetTimeout();
617 } else {
618 if (mZenPanel != null) {
619 mZenPanel.setVisibility(View.GONE);
620 }
621 mTimeoutDelay = TIMEOUT_DELAY;
622 resetTimeout();
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800623 }
624 }
625
Eric Laurentfde16d52012-12-03 14:42:39 -0800626 public void updateStates() {
John Spurlock86005342014-05-23 11:58:00 -0400627 final int count = mSliderPanel.getChildCount();
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800628 for (int i = 0; i < count; i++) {
John Spurlock86005342014-05-23 11:58:00 -0400629 StreamControl sc = (StreamControl) mSliderPanel.getChildAt(i).getTag();
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800630 updateSlider(sc);
631 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632 }
633
John Spurlockae641c92014-06-30 18:11:40 -0400634 private void updateZenMode(int zen) {
635 final boolean show = mZenModeCapable && isNotificationOrRing(mActiveStreamType);
636 setZenPanelVisible(show);
John Spurlock86005342014-05-23 11:58:00 -0400637 }
638
John Spurlockae641c92014-06-30 18:11:40 -0400639 public void postZenModeChanged(int zen) {
John Spurlock86005342014-05-23 11:58:00 -0400640 removeMessages(MSG_ZEN_MODE_CHANGED);
John Spurlockae641c92014-06-30 18:11:40 -0400641 obtainMessage(MSG_ZEN_MODE_CHANGED, zen).sendToTarget();
John Spurlock86005342014-05-23 11:58:00 -0400642 }
643
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800644 public void postVolumeChanged(int streamType, int flags) {
645 if (hasMessages(MSG_VOLUME_CHANGED)) return;
Amith Yamasania6549862012-05-30 17:29:28 -0700646 synchronized (this) {
647 if (mStreamControls == null) {
648 createSliders();
649 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800650 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800651 removeMessages(MSG_FREE_RESOURCES);
652 obtainMessage(MSG_VOLUME_CHANGED, streamType, flags).sendToTarget();
653 }
654
RoboErik19c95182014-06-23 15:38:48 -0700655 public void postRemoteVolumeChanged(MediaController controller, int flags) {
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700656 if (hasMessages(MSG_REMOTE_VOLUME_CHANGED)) return;
657 synchronized (this) {
658 if (mStreamControls == null) {
659 createSliders();
660 }
661 }
662 removeMessages(MSG_FREE_RESOURCES);
RoboErik19c95182014-06-23 15:38:48 -0700663 obtainMessage(MSG_REMOTE_VOLUME_CHANGED, flags, 0, controller).sendToTarget();
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700664 }
665
666 public void postRemoteSliderVisibility(boolean visible) {
667 obtainMessage(MSG_SLIDER_VISIBILITY_CHANGED,
668 AudioService.STREAM_REMOTE_MUSIC, visible ? 1 : 0).sendToTarget();
669 }
670
671 /**
672 * Called by AudioService when it has received new remote playback information that
673 * would affect the VolumePanel display (mainly volumes). The difference with
674 * {@link #postRemoteVolumeChanged(int, int)} is that the handling of the posted message
675 * (MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN) will only update the volume slider if it is being
676 * displayed.
677 * This special code path is due to the fact that remote volume updates arrive to AudioService
678 * asynchronously. So after AudioService has sent the volume update (which should be treated
679 * as a request to update the volume), the application will likely set a new volume. If the UI
680 * is still up, we need to refresh the display to show this new value.
681 */
682 public void postHasNewRemotePlaybackInfo() {
683 if (hasMessages(MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN)) return;
684 // don't create or prevent resources to be freed, if they disappear, this update came too
685 // late and shouldn't warrant the panel to be displayed longer
686 obtainMessage(MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN).sendToTarget();
687 }
688
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400689 public void postMasterVolumeChanged(int flags) {
690 postVolumeChanged(STREAM_MASTER, flags);
691 }
692
Mike Lockwoodce952c82011-11-14 10:47:42 -0800693 public void postMuteChanged(int streamType, int flags) {
694 if (hasMessages(MSG_VOLUME_CHANGED)) return;
Amith Yamasania6549862012-05-30 17:29:28 -0700695 synchronized (this) {
696 if (mStreamControls == null) {
697 createSliders();
698 }
Mike Lockwoodce952c82011-11-14 10:47:42 -0800699 }
700 removeMessages(MSG_FREE_RESOURCES);
701 obtainMessage(MSG_MUTE_CHANGED, streamType, flags).sendToTarget();
702 }
703
704 public void postMasterMuteChanged(int flags) {
705 postMuteChanged(STREAM_MASTER, flags);
706 }
707
Eric Laurentfde16d52012-12-03 14:42:39 -0800708 public void postDisplaySafeVolumeWarning(int flags) {
Eric Laurent0516a9e2012-09-19 11:53:03 -0700709 if (hasMessages(MSG_DISPLAY_SAFE_VOLUME_WARNING)) return;
Eric Laurentfde16d52012-12-03 14:42:39 -0800710 obtainMessage(MSG_DISPLAY_SAFE_VOLUME_WARNING, flags, 0).sendToTarget();
Eric Laurentc34dcc12012-09-10 13:51:52 -0700711 }
712
John Spurlock3346a802014-05-20 16:25:37 -0400713 public void postDismiss() {
John Spurlock86005342014-05-23 11:58:00 -0400714 forceTimeout();
715 }
716
717 public void postLayoutDirection(int layoutDirection) {
718 removeMessages(MSG_LAYOUT_DIRECTION);
John Spurlock84da84c2014-05-31 22:21:52 -0400719 obtainMessage(MSG_LAYOUT_DIRECTION, layoutDirection, 0).sendToTarget();
John Spurlock3346a802014-05-20 16:25:37 -0400720 }
721
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722 /**
723 * Override this if you have other work to do when the volume changes (for
724 * example, vibrating, playing a sound, etc.). Make sure to call through to
725 * the superclass implementation.
726 */
727 protected void onVolumeChanged(int streamType, int flags) {
728
John Spurlock86005342014-05-23 11:58:00 -0400729 if (LOGD) Log.d(mTag, "onVolumeChanged(streamType: " + streamType + ", flags: " + flags + ")");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800730
731 if ((flags & AudioManager.FLAG_SHOW_UI) != 0) {
Amith Yamasania6549862012-05-30 17:29:28 -0700732 synchronized (this) {
733 if (mActiveStreamType != streamType) {
734 reorderSliders(streamType);
735 }
RoboErik19c95182014-06-23 15:38:48 -0700736 onShowVolumeChanged(streamType, flags, null);
Amith Yamasanie3361b82011-02-10 18:20:50 -0800737 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800738 }
739
Marco Nelissen69f593c2009-07-28 09:55:04 -0700740 if ((flags & AudioManager.FLAG_PLAY_SOUND) != 0 && ! mRingIsSilent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 removeMessages(MSG_PLAY_SOUND);
742 sendMessageDelayed(obtainMessage(MSG_PLAY_SOUND, streamType, flags), PLAY_SOUND_DELAY);
743 }
744
745 if ((flags & AudioManager.FLAG_REMOVE_SOUND_AND_VIBRATE) != 0) {
746 removeMessages(MSG_PLAY_SOUND);
747 removeMessages(MSG_VIBRATE);
748 onStopSounds();
749 }
750
751 removeMessages(MSG_FREE_RESOURCES);
752 sendMessageDelayed(obtainMessage(MSG_FREE_RESOURCES), FREE_DELAY);
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800753 resetTimeout();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800754 }
755
Mike Lockwoodce952c82011-11-14 10:47:42 -0800756 protected void onMuteChanged(int streamType, int flags) {
757
John Spurlock86005342014-05-23 11:58:00 -0400758 if (LOGD) Log.d(mTag, "onMuteChanged(streamType: " + streamType + ", flags: " + flags + ")");
Mike Lockwoodce952c82011-11-14 10:47:42 -0800759
760 StreamControl sc = mStreamControls.get(streamType);
761 if (sc != null) {
762 sc.icon.setImageResource(isMuted(sc.streamType) ? sc.iconMuteRes : sc.iconRes);
763 }
764
765 onVolumeChanged(streamType, flags);
766 }
767
RoboErik19c95182014-06-23 15:38:48 -0700768 protected void onShowVolumeChanged(int streamType, int flags, MediaController controller) {
Eric Laurent8c787522012-05-14 14:09:43 -0700769 int index = getStreamVolume(streamType);
Eric Laurentd72d51c2011-02-03 18:47:47 -0800770
Marco Nelissen69f593c2009-07-28 09:55:04 -0700771 mRingIsSilent = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800772
773 if (LOGD) {
John Spurlock86005342014-05-23 11:58:00 -0400774 Log.d(mTag, "onShowVolumeChanged(streamType: " + streamType
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775 + ", flags: " + flags + "), index: " + index);
776 }
777
778 // get max volume for progress bar
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800779
Mike Lockwood8dc1dab2011-10-27 09:52:41 -0400780 int max = getStreamMaxVolume(streamType);
RoboErik19c95182014-06-23 15:38:48 -0700781 StreamControl sc = mStreamControls.get(streamType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800782
783 switch (streamType) {
784
785 case AudioManager.STREAM_RING: {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800786// setRingerIcon();
Marco Nelissen69f593c2009-07-28 09:55:04 -0700787 Uri ringuri = RingtoneManager.getActualDefaultRingtoneUri(
788 mContext, RingtoneManager.TYPE_RINGTONE);
789 if (ringuri == null) {
Marco Nelissen69f593c2009-07-28 09:55:04 -0700790 mRingIsSilent = true;
791 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 break;
793 }
794
795 case AudioManager.STREAM_MUSIC: {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800796 // Special case for when Bluetooth is active for music
Glenn Kasten8b4b97a2011-02-04 13:54:26 -0800797 if ((mAudioManager.getDevicesForStream(AudioManager.STREAM_MUSIC) &
798 (AudioManager.DEVICE_OUT_BLUETOOTH_A2DP |
799 AudioManager.DEVICE_OUT_BLUETOOTH_A2DP_HEADPHONES |
800 AudioManager.DEVICE_OUT_BLUETOOTH_A2DP_SPEAKER)) != 0) {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800801 setMusicIcon(R.drawable.ic_audio_bt, R.drawable.ic_audio_bt_mute);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 } else {
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800803 setMusicIcon(R.drawable.ic_audio_vol, R.drawable.ic_audio_vol_mute);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800804 }
805 break;
806 }
807
808 case AudioManager.STREAM_VOICE_CALL: {
809 /*
810 * For in-call voice call volume, there is no inaudible volume.
811 * Rescale the UI control so the progress bar doesn't go all
812 * the way to zero and don't show the mute icon.
813 */
814 index++;
815 max++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800816 break;
817 }
818
819 case AudioManager.STREAM_ALARM: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800820 break;
821 }
822
823 case AudioManager.STREAM_NOTIFICATION: {
Marco Nelissen69f593c2009-07-28 09:55:04 -0700824 Uri ringuri = RingtoneManager.getActualDefaultRingtoneUri(
825 mContext, RingtoneManager.TYPE_NOTIFICATION);
826 if (ringuri == null) {
Marco Nelissen69f593c2009-07-28 09:55:04 -0700827 mRingIsSilent = true;
828 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 break;
830 }
831
832 case AudioManager.STREAM_BLUETOOTH_SCO: {
833 /*
834 * For in-call voice call volume, there is no inaudible volume.
835 * Rescale the UI control so the progress bar doesn't go all
836 * the way to zero and don't show the mute icon.
837 */
838 index++;
839 max++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800840 break;
841 }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700842
843 case AudioService.STREAM_REMOTE_MUSIC: {
RoboErik19c95182014-06-23 15:38:48 -0700844 if (controller == null && sc != null) {
845 // If we weren't passed one try using the last one set.
846 controller = sc.controller;
847 }
848 if (controller == null) {
849 // We still don't have one, ignore the command.
850 Log.w(mTag, "sent remote volume change without a controller!");
851 } else {
852 VolumeInfo vi = controller.getVolumeInfo();
853 index = vi.getCurrentVolume();
854 max = vi.getMaxVolume();
855 if ((vi.getVolumeControl() & VolumeProvider.VOLUME_CONTROL_FIXED) != 0) {
856 // if the remote volume is fixed add the flag for the UI
857 flags |= AudioManager.FLAG_FIXED_VOLUME;
858 }
859 }
John Spurlock86005342014-05-23 11:58:00 -0400860 if (LOGD) { Log.d(mTag, "showing remote volume "+index+" over "+ max); }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700861 break;
862 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800863 }
864
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800865 if (sc != null) {
RoboErik19c95182014-06-23 15:38:48 -0700866 if (streamType == AudioService.STREAM_REMOTE_MUSIC && controller != sc.controller) {
867 if (sc.controller != null) {
868 sc.controller.removeCallback(mMediaControllerCb);
869 }
870 sc.controller = controller;
871 if (controller != null) {
872 sc.controller.addCallback(mMediaControllerCb);
873 }
874 }
Amith Yamasanid47a3aee2011-08-23 11:11:35 -0700875 if (sc.seekbarView.getMax() != max) {
876 sc.seekbarView.setMax(max);
877 }
Eric Laurent4bbcc652012-09-24 14:26:30 -0700878
Amith Yamasani2bbdd772011-02-02 18:54:13 -0800879 sc.seekbarView.setProgress(index);
John Spurlock7f1df5e2014-05-31 19:11:40 -0400880 updateSliderEnabled(sc, isMuted(streamType),
881 (flags & AudioManager.FLAG_FIXED_VOLUME) != 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 }
883
John Spurlock86005342014-05-23 11:58:00 -0400884 if (!isShowing()) {
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700885 int stream = (streamType == AudioService.STREAM_REMOTE_MUSIC) ? -1 : streamType;
886 // when the stream is for remote playback, use -1 to reset the stream type evaluation
887 mAudioManager.forceVolumeControlStream(stream);
Alan Viverettee8ebaf32014-04-11 15:44:15 -0700888
John Spurlock86005342014-05-23 11:58:00 -0400889 if (mDialog != null) {
890 mDialog.show();
891 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 }
893
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800894 // Do a little vibrate if applicable (only when going into vibrate mode)
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700895 if ((streamType != AudioService.STREAM_REMOTE_MUSIC) &&
896 ((flags & AudioManager.FLAG_VIBRATE) != 0) &&
John Spurlock3346a802014-05-20 16:25:37 -0400897 mAudioManager.isStreamAffectedByRingerMode(streamType) &&
Eric Laurent8c787522012-05-14 14:09:43 -0700898 mAudioManager.getRingerMode() == AudioManager.RINGER_MODE_VIBRATE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800899 sendMessageDelayed(obtainMessage(MSG_VIBRATE), VIBRATE_DELAY);
900 }
John Spurlocka11b4af2014-06-01 11:52:23 -0400901
902 // Pulse the slider icon if an adjustment was suppressed due to silent mode.
John Spurlockae641c92014-06-30 18:11:40 -0400903 if ((flags & AudioManager.FLAG_SHOW_SILENT_HINT) != 0) {
904 showSilentHint();
John Spurlocka11b4af2014-06-01 11:52:23 -0400905 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906 }
907
John Spurlock86005342014-05-23 11:58:00 -0400908 private boolean isShowing() {
909 return mDialog != null ? mDialog.isShowing() : mParent.isAttachedToWindow();
910 }
911
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800912 protected void onPlaySound(int streamType, int flags) {
913
914 if (hasMessages(MSG_STOP_SOUNDS)) {
915 removeMessages(MSG_STOP_SOUNDS);
916 // Force stop right now
917 onStopSounds();
918 }
919
920 synchronized (this) {
921 ToneGenerator toneGen = getOrCreateToneGenerator(streamType);
Eric Laurent733a42b2011-01-19 10:41:57 -0800922 if (toneGen != null) {
923 toneGen.startTone(ToneGenerator.TONE_PROP_BEEP);
924 sendMessageDelayed(obtainMessage(MSG_STOP_SOUNDS), BEEP_DURATION);
925 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800926 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 }
928
929 protected void onStopSounds() {
930
931 synchronized (this) {
932 int numStreamTypes = AudioSystem.getNumStreamTypes();
933 for (int i = numStreamTypes - 1; i >= 0; i--) {
934 ToneGenerator toneGen = mToneGenerators[i];
935 if (toneGen != null) {
936 toneGen.stopTone();
937 }
938 }
939 }
940 }
941
942 protected void onVibrate() {
943
944 // Make sure we ended up in vibrate ringer mode
Eric Laurent8c787522012-05-14 14:09:43 -0700945 if (mAudioManager.getRingerMode() != AudioManager.RINGER_MODE_VIBRATE) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946 return;
947 }
948
John Spurlockf9e1a0b2014-03-19 22:09:06 -0400949 mVibrator.vibrate(VIBRATE_DURATION, AudioManager.STREAM_SYSTEM);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 }
951
RoboErik19c95182014-06-23 15:38:48 -0700952 protected void onRemoteVolumeChanged(MediaController controller, int flags) {
953 if (LOGD) Log.d(mTag, "onRemoteVolumeChanged(controller:" + controller + ", flags: " + flags
954 + ")");
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700955
John Spurlock86005342014-05-23 11:58:00 -0400956 if (((flags & AudioManager.FLAG_SHOW_UI) != 0) || isShowing()) {
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700957 synchronized (this) {
958 if (mActiveStreamType != AudioService.STREAM_REMOTE_MUSIC) {
959 reorderSliders(AudioService.STREAM_REMOTE_MUSIC);
960 }
RoboErik19c95182014-06-23 15:38:48 -0700961 onShowVolumeChanged(AudioService.STREAM_REMOTE_MUSIC, flags, controller);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700962 }
963 } else {
John Spurlock86005342014-05-23 11:58:00 -0400964 if (LOGD) Log.d(mTag, "not calling onShowVolumeChanged(), no FLAG_SHOW_UI or no UI");
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700965 }
966
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700967 removeMessages(MSG_FREE_RESOURCES);
968 sendMessageDelayed(obtainMessage(MSG_FREE_RESOURCES), FREE_DELAY);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700969 resetTimeout();
970 }
971
972 protected void onRemoteVolumeUpdateIfShown() {
John Spurlock86005342014-05-23 11:58:00 -0400973 if (LOGD) Log.d(mTag, "onRemoteVolumeUpdateIfShown()");
974 if (isShowing()
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700975 && (mActiveStreamType == AudioService.STREAM_REMOTE_MUSIC)
976 && (mStreamControls != null)) {
RoboErik19c95182014-06-23 15:38:48 -0700977 onShowVolumeChanged(AudioService.STREAM_REMOTE_MUSIC, 0, null);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700978 }
979 }
980
RoboErik19c95182014-06-23 15:38:48 -0700981 /**
982 * Clear the current remote stream controller.
983 */
984 private void clearRemoteStreamController() {
985 if (mStreamControls != null) {
986 StreamControl sc = mStreamControls.get(AudioService.STREAM_REMOTE_MUSIC);
987 if (sc != null) {
988 if (sc.controller != null) {
989 sc.controller.removeCallback(mMediaControllerCb);
990 sc.controller = null;
991 }
992 }
993 }
994 }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -0700995
996 /**
997 * Handler for MSG_SLIDER_VISIBILITY_CHANGED
998 * Hide or show a slider
999 * @param streamType can be a valid stream type value, or VolumePanel.STREAM_MASTER,
1000 * or AudioService.STREAM_REMOTE_MUSIC
1001 * @param visible
1002 */
1003 synchronized protected void onSliderVisibilityChanged(int streamType, int visible) {
John Spurlock86005342014-05-23 11:58:00 -04001004 if (LOGD) Log.d(mTag, "onSliderVisibilityChanged(stream="+streamType+", visi="+visible+")");
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -07001005 boolean isVisible = (visible == 1);
1006 for (int i = STREAMS.length - 1 ; i >= 0 ; i--) {
1007 StreamResources streamRes = STREAMS[i];
1008 if (streamRes.streamType == streamType) {
1009 streamRes.show = isVisible;
1010 if (!isVisible && (mActiveStreamType == streamType)) {
1011 mActiveStreamType = -1;
1012 }
1013 break;
1014 }
1015 }
1016 }
1017
Eric Laurentfde16d52012-12-03 14:42:39 -08001018 protected void onDisplaySafeVolumeWarning(int flags) {
John Spurlock86005342014-05-23 11:58:00 -04001019 if ((flags & AudioManager.FLAG_SHOW_UI) != 0 || isShowing()) {
Eric Laurentfde16d52012-12-03 14:42:39 -08001020 synchronized (sConfirmSafeVolumeLock) {
1021 if (sConfirmSafeVolumeDialog != null) {
1022 return;
1023 }
1024 sConfirmSafeVolumeDialog = new AlertDialog.Builder(mContext)
1025 .setMessage(com.android.internal.R.string.safe_media_volume_warning)
1026 .setPositiveButton(com.android.internal.R.string.yes,
1027 new DialogInterface.OnClickListener() {
Alan Viverettee8ebaf32014-04-11 15:44:15 -07001028 @Override
Eric Laurentfde16d52012-12-03 14:42:39 -08001029 public void onClick(DialogInterface dialog, int which) {
John Spurlock3346a802014-05-20 16:25:37 -04001030 mAudioManager.disableSafeMediaVolume();
Eric Laurentfde16d52012-12-03 14:42:39 -08001031 }
1032 })
1033 .setNegativeButton(com.android.internal.R.string.no, null)
1034 .setIconAttribute(android.R.attr.alertDialogIcon)
1035 .create();
1036 final WarningDialogReceiver warning = new WarningDialogReceiver(mContext,
1037 sConfirmSafeVolumeDialog, this);
Eric Laurent0516a9e2012-09-19 11:53:03 -07001038
Eric Laurentfde16d52012-12-03 14:42:39 -08001039 sConfirmSafeVolumeDialog.setOnDismissListener(warning);
1040 sConfirmSafeVolumeDialog.getWindow().setType(
1041 WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
1042 sConfirmSafeVolumeDialog.show();
1043 }
1044 updateStates();
Eric Laurentc34dcc12012-09-10 13:51:52 -07001045 }
Eric Laurentfde16d52012-12-03 14:42:39 -08001046 resetTimeout();
Eric Laurentc34dcc12012-09-10 13:51:52 -07001047 }
1048
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049 /**
1050 * Lock on this VolumePanel instance as long as you use the returned ToneGenerator.
1051 */
1052 private ToneGenerator getOrCreateToneGenerator(int streamType) {
Christopher Tatec4b78d22012-05-22 13:57:58 -07001053 if (streamType == STREAM_MASTER) {
1054 // For devices that use the master volume setting only but still want to
1055 // play a volume-changed tone, direct the master volume pseudostream to
1056 // the system stream's tone generator.
1057 if (mPlayMasterStreamTones) {
1058 streamType = AudioManager.STREAM_SYSTEM;
1059 } else {
1060 return null;
1061 }
1062 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001063 synchronized (this) {
1064 if (mToneGenerators[streamType] == null) {
Eric Laurent733a42b2011-01-19 10:41:57 -08001065 try {
1066 mToneGenerators[streamType] = new ToneGenerator(streamType, MAX_VOLUME);
1067 } catch (RuntimeException e) {
1068 if (LOGD) {
John Spurlock86005342014-05-23 11:58:00 -04001069 Log.d(mTag, "ToneGenerator constructor failed with "
Eric Laurent733a42b2011-01-19 10:41:57 -08001070 + "RuntimeException: " + e);
1071 }
1072 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001073 }
Eric Laurent733a42b2011-01-19 10:41:57 -08001074 return mToneGenerators[streamType];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001075 }
1076 }
1077
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001078
1079 /**
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001080 * Switch between icons because Bluetooth music is same as music volume, but with
1081 * different icons.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001082 */
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001083 private void setMusicIcon(int resId, int resMuteId) {
1084 StreamControl sc = mStreamControls.get(AudioManager.STREAM_MUSIC);
1085 if (sc != null) {
1086 sc.iconRes = resId;
1087 sc.iconMuteRes = resMuteId;
1088 sc.icon.setImageResource(isMuted(sc.streamType) ? sc.iconMuteRes : sc.iconRes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001089 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001090 }
1091
1092 protected void onFreeResources() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001093 synchronized (this) {
1094 for (int i = mToneGenerators.length - 1; i >= 0; i--) {
1095 if (mToneGenerators[i] != null) {
1096 mToneGenerators[i].release();
1097 }
1098 mToneGenerators[i] = null;
1099 }
1100 }
1101 }
1102
1103 @Override
1104 public void handleMessage(Message msg) {
1105 switch (msg.what) {
1106
1107 case MSG_VOLUME_CHANGED: {
1108 onVolumeChanged(msg.arg1, msg.arg2);
1109 break;
1110 }
1111
Mike Lockwoodce952c82011-11-14 10:47:42 -08001112 case MSG_MUTE_CHANGED: {
1113 onMuteChanged(msg.arg1, msg.arg2);
1114 break;
1115 }
1116
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001117 case MSG_FREE_RESOURCES: {
1118 onFreeResources();
1119 break;
1120 }
1121
1122 case MSG_STOP_SOUNDS: {
1123 onStopSounds();
1124 break;
1125 }
1126
1127 case MSG_PLAY_SOUND: {
1128 onPlaySound(msg.arg1, msg.arg2);
1129 break;
1130 }
1131
1132 case MSG_VIBRATE: {
1133 onVibrate();
1134 break;
1135 }
1136
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001137 case MSG_TIMEOUT: {
John Spurlock86005342014-05-23 11:58:00 -04001138 if (isShowing()) {
1139 if (mDialog != null) {
1140 mDialog.dismiss();
RoboErik19c95182014-06-23 15:38:48 -07001141 clearRemoteStreamController();
John Spurlockf71205c2014-05-29 10:17:51 -04001142 mActiveStreamType = -1;
John Spurlock86005342014-05-23 11:58:00 -04001143 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001144 }
Eric Laurentfde16d52012-12-03 14:42:39 -08001145 synchronized (sConfirmSafeVolumeLock) {
1146 if (sConfirmSafeVolumeDialog != null) {
1147 sConfirmSafeVolumeDialog.dismiss();
1148 }
1149 }
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001150 break;
1151 }
1152 case MSG_RINGER_MODE_CHANGED: {
John Spurlock86005342014-05-23 11:58:00 -04001153 if (isShowing()) {
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001154 updateStates();
1155 }
1156 break;
1157 }
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -07001158
1159 case MSG_REMOTE_VOLUME_CHANGED: {
RoboErik19c95182014-06-23 15:38:48 -07001160 onRemoteVolumeChanged((MediaController) msg.obj, msg.arg1);
Jean-Michel Trivi3114ce32012-06-11 15:03:52 -07001161 break;
1162 }
1163
1164 case MSG_REMOTE_VOLUME_UPDATE_IF_SHOWN:
1165 onRemoteVolumeUpdateIfShown();
1166 break;
1167
1168 case MSG_SLIDER_VISIBILITY_CHANGED:
1169 onSliderVisibilityChanged(msg.arg1, msg.arg2);
1170 break;
Eric Laurentc34dcc12012-09-10 13:51:52 -07001171
1172 case MSG_DISPLAY_SAFE_VOLUME_WARNING:
Eric Laurentfde16d52012-12-03 14:42:39 -08001173 onDisplaySafeVolumeWarning(msg.arg1);
Eric Laurentc34dcc12012-09-10 13:51:52 -07001174 break;
John Spurlock86005342014-05-23 11:58:00 -04001175
1176 case MSG_LAYOUT_DIRECTION:
1177 setLayoutDirection(msg.arg1);
1178 break;
1179
1180 case MSG_ZEN_MODE_CHANGED:
John Spurlockae641c92014-06-30 18:11:40 -04001181 updateZenMode(msg.arg1);
1182 break;
1183
1184 case MSG_USER_ACTIVITY:
1185 if (mCallback != null) {
1186 mCallback.onInteraction();
1187 }
John Spurlock86005342014-05-23 11:58:00 -04001188 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001189 }
1190 }
1191
John Spurlockae641c92014-06-30 18:11:40 -04001192 private void resetTimeout() {
John Spurlock86005342014-05-23 11:58:00 -04001193 if (LOGD) Log.d(mTag, "resetTimeout at " + System.currentTimeMillis());
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001194 removeMessages(MSG_TIMEOUT);
John Spurlock3bd4fee2014-05-29 20:51:09 -04001195 sendEmptyMessageDelayed(MSG_TIMEOUT, mTimeoutDelay);
John Spurlockae641c92014-06-30 18:11:40 -04001196 removeMessages(MSG_USER_ACTIVITY);
1197 sendEmptyMessage(MSG_USER_ACTIVITY);
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001198 }
1199
Amith Yamasanibaf6dbf2011-08-18 17:40:29 -07001200 private void forceTimeout() {
1201 removeMessages(MSG_TIMEOUT);
John Spurlock86005342014-05-23 11:58:00 -04001202 sendEmptyMessage(MSG_TIMEOUT);
1203 }
1204
1205 public ZenModeController getZenController() {
1206 return mZenController;
Amith Yamasanibaf6dbf2011-08-18 17:40:29 -07001207 }
1208
Alan Viverettee8ebaf32014-04-11 15:44:15 -07001209 private final OnSeekBarChangeListener mSeekListener = new OnSeekBarChangeListener() {
1210 @Override
1211 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
1212 final Object tag = seekBar.getTag();
1213 if (fromUser && tag instanceof StreamControl) {
1214 StreamControl sc = (StreamControl) tag;
RoboErik19c95182014-06-23 15:38:48 -07001215 setStreamVolume(sc, progress, 0);
Alan Viverettee8ebaf32014-04-11 15:44:15 -07001216 }
1217 resetTimeout();
1218 }
1219
1220 @Override
1221 public void onStartTrackingTouch(SeekBar seekBar) {
1222 }
1223
1224 @Override
1225 public void onStopTrackingTouch(SeekBar seekBar) {
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001226 }
Alan Viverettee8ebaf32014-04-11 15:44:15 -07001227 };
Amith Yamasani2bbdd772011-02-02 18:54:13 -08001228
John Spurlock86005342014-05-23 11:58:00 -04001229 private final ZenModeController.Callback mZenCallback = new ZenModeController.Callback() {
John Spurlockae641c92014-06-30 18:11:40 -04001230 public void onZenChanged(int zen) {
John Spurlock7f1df5e2014-05-31 19:11:40 -04001231 postZenModeChanged(zen);
John Spurlock86005342014-05-23 11:58:00 -04001232 }
1233 };
RoboErik19c95182014-06-23 15:38:48 -07001234
1235 private final MediaController.Callback mMediaControllerCb = new MediaController.Callback() {
1236 public void onVolumeInfoChanged(VolumeInfo info) {
1237 onRemoteVolumeUpdateIfShown();
1238 }
1239 };
John Spurlockae641c92014-06-30 18:11:40 -04001240
1241 public interface Callback {
1242 void onZenSettings();
1243 void onInteraction();
1244 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001245}