blob: 53dae5cfca453924c1ef5b01e1968fca45180ccf [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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
Joe Onoratofd52b182010-11-10 18:00:52 -080017package com.android.systemui.statusbar.phone;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018
Kenny Guy3094d4a2015-04-01 19:14:10 +010019import android.app.ActivityManagerNative;
Adrian Roosc42a1e12014-07-07 23:35:53 +020020import android.app.AlarmManager;
John Spurlock604a5ee2015-06-01 12:27:22 -040021import android.app.AlarmManager.AlarmClockInfo;
Kenny Guy3094d4a2015-04-01 19:14:10 +010022import android.app.IUserSwitchObserver;
Joe Onorato798ac4c2010-05-27 16:39:00 -040023import android.app.StatusBarManager;
Nick Pellybd022f42009-08-14 18:33:38 -070024import android.bluetooth.BluetoothAdapter;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.BroadcastReceiver;
26import android.content.Context;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.content.Intent;
28import android.content.IntentFilter;
Kenny Guy3094d4a2015-04-01 19:14:10 +010029import android.content.pm.UserInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.media.AudioManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.os.Handler;
Kenny Guy3094d4a2015-04-01 19:14:10 +010032import android.os.IRemoteCallback;
33import android.os.RemoteException;
Adrian Roosc42a1e12014-07-07 23:35:53 +020034import android.os.UserHandle;
Kenny Guy3094d4a2015-04-01 19:14:10 +010035import android.os.UserManager;
John Spurlockae641c92014-06-30 18:11:40 -040036import android.provider.Settings.Global;
Tyler Gunnef9f6f92014-09-12 22:16:17 -070037import android.telecom.TelecomManager;
John Spurlockcd686b52013-06-05 10:13:46 -040038import android.util.Log;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039
Wink Savillea639b312012-07-10 12:37:54 -070040import com.android.internal.telephony.IccCardConstants;
Wink Saville04e71b32009-04-02 11:00:54 -070041import com.android.internal.telephony.TelephonyIntents;
Joe Onorato798ac4c2010-05-27 16:39:00 -040042import com.android.systemui.R;
John Spurlock3c4076a2015-02-24 12:12:25 -050043import com.android.systemui.qs.tiles.DndTile;
John Spurlock96fe98d2014-08-27 09:36:02 -040044import com.android.systemui.statusbar.policy.CastController;
45import com.android.systemui.statusbar.policy.CastController.CastDevice;
Jason Monk952d5d82014-10-27 15:28:22 -040046import com.android.systemui.statusbar.policy.HotspotController;
Adrian Roos88b11932015-07-22 14:59:48 -070047import com.android.systemui.statusbar.policy.UserInfoController;
Joe Onorato798ac4c2010-05-27 16:39:00 -040048
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049/**
50 * This class contains all of the policy about which icons are installed in the status
Joe Onorato798ac4c2010-05-27 16:39:00 -040051 * bar at boot time. It goes through the normal API for icons, even though it probably
52 * strictly doesn't need to.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 */
Joe Onoratofd52b182010-11-10 18:00:52 -080054public class PhoneStatusBarPolicy {
55 private static final String TAG = "PhoneStatusBarPolicy";
John Spurlocka37e9c82014-07-08 09:40:31 -040056 private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
Robert Greenwaltd7085fc2010-09-08 15:24:47 -070057
John Spurlock96fe98d2014-08-27 09:36:02 -040058 private static final String SLOT_CAST = "cast";
Jason Monk952d5d82014-10-27 15:28:22 -040059 private static final String SLOT_HOTSPOT = "hotspot";
John Spurlocka37e9c82014-07-08 09:40:31 -040060 private static final String SLOT_BLUETOOTH = "bluetooth";
61 private static final String SLOT_TTY = "tty";
62 private static final String SLOT_ZEN = "zen";
63 private static final String SLOT_VOLUME = "volume";
John Spurlocka37e9c82014-07-08 09:40:31 -040064 private static final String SLOT_ALARM_CLOCK = "alarm_clock";
Kenny Guy3094d4a2015-04-01 19:14:10 +010065 private static final String SLOT_MANAGED_PROFILE = "managed_profile";
John Spurlocka37e9c82014-07-08 09:40:31 -040066
Dianne Hackborn4840e142009-03-24 22:40:29 -070067 private final Context mContext;
Joe Onorato798ac4c2010-05-27 16:39:00 -040068 private final StatusBarManager mService;
Joe Onorato10523b4d2010-10-25 10:42:46 -070069 private final Handler mHandler = new Handler();
John Spurlock96fe98d2014-08-27 09:36:02 -040070 private final CastController mCast;
Jason Monk952d5d82014-10-27 15:28:22 -040071 private final HotspotController mHotspot;
John Spurlock15782262015-05-29 15:35:53 -040072 private final AlarmManager mAlarmManager;
Adrian Roos88b11932015-07-22 14:59:48 -070073 private final UserInfoController mUserInfoController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 // Assume it's all good unless we hear otherwise. We don't always seem
76 // to get broadcasts that it *is* there.
Wink Savillea639b312012-07-10 12:37:54 -070077 IccCardConstants.State mSimState = IccCardConstants.State.READY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078
John Spurlocka37e9c82014-07-08 09:40:31 -040079 private boolean mZenVisible;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 private boolean mVolumeVisible;
John Spurlock604a5ee2015-06-01 12:27:22 -040081 private boolean mCurrentUserSetup;
Wink Saville04e71b32009-04-02 11:00:54 -070082
John Spurlockae641c92014-06-30 18:11:40 -040083 private int mZen;
John Spurlockba2c6a02014-05-19 09:44:06 -040084
Daniel Sandlere3b7a2d2011-10-27 16:16:15 -040085 private boolean mBluetoothEnabled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086
Kenny Guy3094d4a2015-04-01 19:14:10 +010087 private boolean mManagedProfileFocused = false;
88 private boolean mManagedProfileIconVisible = true;
89
90 private boolean mKeyguardVisible = true;
Wink Savillee9b06d72009-05-18 21:47:50 -070091
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 private BroadcastReceiver mIntentReceiver = new BroadcastReceiver() {
93 @Override
94 public void onReceive(Context context, Intent intent) {
95 String action = intent.getAction();
Adrian Roosc42a1e12014-07-07 23:35:53 +020096 if (action.equals(AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED)) {
97 updateAlarm();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 }
Nick Pellyde893f52009-09-08 13:15:33 -070099 else if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED) ||
Jaikumar Ganeshd9bb6882010-09-27 17:05:24 -0700100 action.equals(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED)) {
Jorim Jaggi2d75f9f2014-10-08 17:10:58 -0700101 updateBluetooth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 }
John Spurlockbcc10872014-11-28 15:29:21 -0500103 else if (action.equals(AudioManager.RINGER_MODE_CHANGED_ACTION) ||
104 action.equals(AudioManager.INTERNAL_RINGER_MODE_CHANGED_ACTION)) {
John Spurlocka37e9c82014-07-08 09:40:31 -0400105 updateVolumeZen();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 }
107 else if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) {
108 updateSimState(intent);
109 }
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700110 else if (action.equals(TelecomManager.ACTION_CURRENT_TTY_MODE_CHANGED)) {
Wink Saville04e71b32009-04-02 11:00:54 -0700111 updateTTY(intent);
112 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 }
114 };
115
Adrian Roos88b11932015-07-22 14:59:48 -0700116 public PhoneStatusBarPolicy(Context context, CastController cast, HotspotController hotspot,
117 UserInfoController userInfoController) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 mContext = context;
John Spurlock96fe98d2014-08-27 09:36:02 -0400119 mCast = cast;
Jason Monk952d5d82014-10-27 15:28:22 -0400120 mHotspot = hotspot;
John Spurlock15782262015-05-29 15:35:53 -0400121 mService = (StatusBarManager) context.getSystemService(Context.STATUS_BAR_SERVICE);
122 mAlarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Adrian Roos88b11932015-07-22 14:59:48 -0700123 mUserInfoController = userInfoController;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124
Daniel Sandlere3b7a2d2011-10-27 16:16:15 -0400125 // listen for broadcasts
126 IntentFilter filter = new IntentFilter();
Adrian Roosc42a1e12014-07-07 23:35:53 +0200127 filter.addAction(AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED);
Daniel Sandlere3b7a2d2011-10-27 16:16:15 -0400128 filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
John Spurlockbcc10872014-11-28 15:29:21 -0500129 filter.addAction(AudioManager.INTERNAL_RINGER_MODE_CHANGED_ACTION);
Daniel Sandlere3b7a2d2011-10-27 16:16:15 -0400130 filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
131 filter.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
132 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700133 filter.addAction(TelecomManager.ACTION_CURRENT_TTY_MODE_CHANGED);
Daniel Sandlere3b7a2d2011-10-27 16:16:15 -0400134 mContext.registerReceiver(mIntentReceiver, filter, null, mHandler);
135
Kenny Guy3094d4a2015-04-01 19:14:10 +0100136 // listen for user / profile change.
137 try {
138 ActivityManagerNative.getDefault().registerUserSwitchObserver(mUserSwitchListener);
139 } catch (RemoteException e) {
140 // Ignore
141 }
142
Wink Saville04e71b32009-04-02 11:00:54 -0700143 // TTY status
John Spurlocka37e9c82014-07-08 09:40:31 -0400144 mService.setIcon(SLOT_TTY, R.drawable.stat_sys_tty_mode, 0, null);
145 mService.setIconVisibility(SLOT_TTY, false);
Wink Saville04e71b32009-04-02 11:00:54 -0700146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 // bluetooth status
Jorim Jaggi2d75f9f2014-10-08 17:10:58 -0700148 updateBluetooth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 // Alarm clock
John Spurlocka37e9c82014-07-08 09:40:31 -0400151 mService.setIcon(SLOT_ALARM_CLOCK, R.drawable.stat_sys_alarm, 0, null);
152 mService.setIconVisibility(SLOT_ALARM_CLOCK, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153
John Spurlocka37e9c82014-07-08 09:40:31 -0400154 // zen
155 mService.setIcon(SLOT_ZEN, R.drawable.stat_sys_zen_important, 0, null);
156 mService.setIconVisibility(SLOT_ZEN, false);
157
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 // volume
John Spurlockad494bc2014-07-19 15:56:19 -0400159 mService.setIcon(SLOT_VOLUME, R.drawable.stat_sys_ringer_vibrate, 0, null);
John Spurlocka37e9c82014-07-08 09:40:31 -0400160 mService.setIconVisibility(SLOT_VOLUME, false);
161 updateVolumeZen();
John Spurlock96fe98d2014-08-27 09:36:02 -0400162
163 // cast
164 mService.setIcon(SLOT_CAST, R.drawable.stat_sys_cast, 0, null);
165 mService.setIconVisibility(SLOT_CAST, false);
166 mCast.addCallback(mCastCallback);
Jason Monk952d5d82014-10-27 15:28:22 -0400167
168 // hotspot
Jason Monk08187a42015-06-09 14:33:51 -0400169 mService.setIcon(SLOT_HOTSPOT, R.drawable.stat_sys_hotspot, 0,
170 mContext.getString(R.string.accessibility_status_bar_hotspot));
Jason Monk952d5d82014-10-27 15:28:22 -0400171 mService.setIconVisibility(SLOT_HOTSPOT, mHotspot.isHotspotEnabled());
172 mHotspot.addCallback(mHotspotCallback);
Kenny Guy3094d4a2015-04-01 19:14:10 +0100173
174 // managed profile
Adrian Roos1b5eb972015-06-11 18:22:52 -0700175 mService.setIcon(SLOT_MANAGED_PROFILE, R.drawable.stat_sys_managed_profile_status, 0,
176 mContext.getString(R.string.accessibility_managed_profile));
Kenny Guy3094d4a2015-04-01 19:14:10 +0100177 mService.setIconVisibility(SLOT_MANAGED_PROFILE, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 }
179
John Spurlockae641c92014-06-30 18:11:40 -0400180 public void setZenMode(int zen) {
John Spurlockba2c6a02014-05-19 09:44:06 -0400181 mZen = zen;
John Spurlocka37e9c82014-07-08 09:40:31 -0400182 updateVolumeZen();
John Spurlockba2c6a02014-05-19 09:44:06 -0400183 }
184
Adrian Roosc42a1e12014-07-07 23:35:53 +0200185 private void updateAlarm() {
John Spurlock604a5ee2015-06-01 12:27:22 -0400186 final AlarmClockInfo alarm = mAlarmManager.getNextAlarmClock(UserHandle.USER_CURRENT);
187 final boolean hasAlarm = alarm != null && alarm.getTriggerTime() > 0;
John Spurlock15782262015-05-29 15:35:53 -0400188 final boolean zenNone = mZen == Global.ZEN_MODE_NO_INTERRUPTIONS;
John Spurlock15782262015-05-29 15:35:53 -0400189 mService.setIcon(SLOT_ALARM_CLOCK, zenNone ? R.drawable.stat_sys_alarm_dim
190 : R.drawable.stat_sys_alarm, 0, null);
John Spurlock604a5ee2015-06-01 12:27:22 -0400191 mService.setIconVisibility(SLOT_ALARM_CLOCK, mCurrentUserSetup && hasAlarm);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 }
193
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194 private final void updateSimState(Intent intent) {
Wink Savillea639b312012-07-10 12:37:54 -0700195 String stateExtra = intent.getStringExtra(IccCardConstants.INTENT_KEY_ICC_STATE);
196 if (IccCardConstants.INTENT_VALUE_ICC_ABSENT.equals(stateExtra)) {
197 mSimState = IccCardConstants.State.ABSENT;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 }
Rakesh Pallerlaf099a5f2013-02-06 11:44:23 +0530199 else if (IccCardConstants.INTENT_VALUE_ICC_CARD_IO_ERROR.equals(stateExtra)) {
200 mSimState = IccCardConstants.State.CARD_IO_ERROR;
201 }
Wink Savillea639b312012-07-10 12:37:54 -0700202 else if (IccCardConstants.INTENT_VALUE_ICC_READY.equals(stateExtra)) {
203 mSimState = IccCardConstants.State.READY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 }
Wink Savillea639b312012-07-10 12:37:54 -0700205 else if (IccCardConstants.INTENT_VALUE_ICC_LOCKED.equals(stateExtra)) {
206 final String lockedReason =
207 intent.getStringExtra(IccCardConstants.INTENT_KEY_LOCKED_REASON);
208 if (IccCardConstants.INTENT_VALUE_LOCKED_ON_PIN.equals(lockedReason)) {
209 mSimState = IccCardConstants.State.PIN_REQUIRED;
johnwang347c5a22009-08-24 22:11:11 -0700210 }
Wink Savillea639b312012-07-10 12:37:54 -0700211 else if (IccCardConstants.INTENT_VALUE_LOCKED_ON_PUK.equals(lockedReason)) {
212 mSimState = IccCardConstants.State.PUK_REQUIRED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 }
214 else {
Wink Savillea639b312012-07-10 12:37:54 -0700215 mSimState = IccCardConstants.State.NETWORK_LOCKED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 }
217 } else {
Wink Savillea639b312012-07-10 12:37:54 -0700218 mSimState = IccCardConstants.State.UNKNOWN;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 }
221
John Spurlockbcc10872014-11-28 15:29:21 -0500222 private final void updateVolumeZen() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
John Spurlocka37e9c82014-07-08 09:40:31 -0400224
225 boolean zenVisible = false;
226 int zenIconId = 0;
227 String zenDescription = null;
228
229 boolean volumeVisible = false;
230 int volumeIconId = 0;
231 String volumeDescription = null;
232
John Spurlockf88d8082015-03-25 18:09:51 -0400233 if (DndTile.isVisible(mContext) || DndTile.isCombinedIcon(mContext)) {
John Spurlock3c4076a2015-02-24 12:12:25 -0500234 zenVisible = mZen != Global.ZEN_MODE_OFF;
John Spurlock4ec8b602015-05-11 17:46:28 -0400235 zenIconId = mZen == Global.ZEN_MODE_NO_INTERRUPTIONS
236 ? R.drawable.stat_sys_dnd_total_silence : R.drawable.stat_sys_dnd;
John Spurlock3c4076a2015-02-24 12:12:25 -0500237 zenDescription = mContext.getString(R.string.quick_settings_dnd_label);
238 } else if (mZen == Global.ZEN_MODE_NO_INTERRUPTIONS) {
John Spurlocka37e9c82014-07-08 09:40:31 -0400239 zenVisible = true;
240 zenIconId = R.drawable.stat_sys_zen_none;
John Spurlockd9c75db2015-04-28 11:19:13 -0400241 zenDescription = mContext.getString(R.string.interruption_level_none);
John Spurlockae641c92014-06-30 18:11:40 -0400242 } else if (mZen == Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS) {
John Spurlocka37e9c82014-07-08 09:40:31 -0400243 zenVisible = true;
244 zenIconId = R.drawable.stat_sys_zen_important;
John Spurlockd9c75db2015-04-28 11:19:13 -0400245 zenDescription = mContext.getString(R.string.interruption_level_priority);
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247
John Spurlockd9c75db2015-04-28 11:19:13 -0400248 if (DndTile.isVisible(mContext) && !DndTile.isCombinedIcon(mContext)
John Spurlocka48d7792015-03-03 17:35:57 -0500249 && audioManager.getRingerModeInternal() == AudioManager.RINGER_MODE_SILENT) {
250 volumeVisible = true;
251 volumeIconId = R.drawable.stat_sys_ringer_silent;
252 volumeDescription = mContext.getString(R.string.accessibility_ringer_silent);
John Spurlock4f1163c2015-04-02 17:41:21 -0400253 } else if (mZen != Global.ZEN_MODE_NO_INTERRUPTIONS && mZen != Global.ZEN_MODE_ALARMS &&
John Spurlock661f2cf2014-11-17 10:29:10 -0500254 audioManager.getRingerModeInternal() == AudioManager.RINGER_MODE_VIBRATE) {
John Spurlocka37e9c82014-07-08 09:40:31 -0400255 volumeVisible = true;
256 volumeIconId = R.drawable.stat_sys_ringer_vibrate;
257 volumeDescription = mContext.getString(R.string.accessibility_ringer_vibrate);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 }
John Spurlocka37e9c82014-07-08 09:40:31 -0400259
260 if (zenVisible) {
261 mService.setIcon(SLOT_ZEN, zenIconId, 0, zenDescription);
262 }
263 if (zenVisible != mZenVisible) {
264 mService.setIconVisibility(SLOT_ZEN, zenVisible);
265 mZenVisible = zenVisible;
266 }
267
268 if (volumeVisible) {
269 mService.setIcon(SLOT_VOLUME, volumeIconId, 0, volumeDescription);
270 }
271 if (volumeVisible != mVolumeVisible) {
272 mService.setIconVisibility(SLOT_VOLUME, volumeVisible);
273 mVolumeVisible = volumeVisible;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 }
John Spurlock15782262015-05-29 15:35:53 -0400275 updateAlarm();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 }
277
Jorim Jaggi2d75f9f2014-10-08 17:10:58 -0700278 private final void updateBluetooth() {
279 BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();
Joe Onorato798ac4c2010-05-27 16:39:00 -0400280 int iconId = R.drawable.stat_sys_data_bluetooth;
Jorim Jaggi2d75f9f2014-10-08 17:10:58 -0700281 String contentDescription =
Jason Monk1aa32822015-07-14 16:10:32 -0400282 mContext.getString(R.string.accessibility_quick_settings_bluetooth_on);
Jorim Jaggi2d75f9f2014-10-08 17:10:58 -0700283 if (adapter != null) {
284 mBluetoothEnabled = (adapter.getState() == BluetoothAdapter.STATE_ON);
285 if (adapter.getConnectionState() == BluetoothAdapter.STATE_CONNECTED) {
Jaikumar Ganeshd9bb6882010-09-27 17:05:24 -0700286 iconId = R.drawable.stat_sys_data_bluetooth_connected;
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700287 contentDescription = mContext.getString(R.string.accessibility_bluetooth_connected);
Jaikumar Ganesh084c6652009-12-07 10:58:18 -0800288 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 } else {
Jorim Jaggi2d75f9f2014-10-08 17:10:58 -0700290 mBluetoothEnabled = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800291 }
Wink Savillee9b06d72009-05-18 21:47:50 -0700292
John Spurlocka37e9c82014-07-08 09:40:31 -0400293 mService.setIcon(SLOT_BLUETOOTH, iconId, 0, contentDescription);
294 mService.setIconVisibility(SLOT_BLUETOOTH, mBluetoothEnabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800295 }
296
Wink Savillee9b06d72009-05-18 21:47:50 -0700297 private final void updateTTY(Intent intent) {
Tyler Gunnef9f6f92014-09-12 22:16:17 -0700298 int currentTtyMode = intent.getIntExtra(TelecomManager.EXTRA_CURRENT_TTY_MODE,
299 TelecomManager.TTY_MODE_OFF);
300 boolean enabled = currentTtyMode != TelecomManager.TTY_MODE_OFF;
Wink Saville04e71b32009-04-02 11:00:54 -0700301
John Spurlocka37e9c82014-07-08 09:40:31 -0400302 if (DEBUG) Log.v(TAG, "updateTTY: enabled: " + enabled);
Wink Saville04e71b32009-04-02 11:00:54 -0700303
304 if (enabled) {
305 // TTY is on
John Spurlocka37e9c82014-07-08 09:40:31 -0400306 if (DEBUG) Log.v(TAG, "updateTTY: set TTY on");
307 mService.setIcon(SLOT_TTY, R.drawable.stat_sys_tty_mode, 0,
Svetoslav Ganov6179ea32011-06-28 01:12:41 -0700308 mContext.getString(R.string.accessibility_tty_enabled));
John Spurlocka37e9c82014-07-08 09:40:31 -0400309 mService.setIconVisibility(SLOT_TTY, true);
Wink Saville04e71b32009-04-02 11:00:54 -0700310 } else {
311 // TTY is off
John Spurlocka37e9c82014-07-08 09:40:31 -0400312 if (DEBUG) Log.v(TAG, "updateTTY: set TTY off");
313 mService.setIconVisibility(SLOT_TTY, false);
Wink Saville04e71b32009-04-02 11:00:54 -0700314 }
315 }
John Spurlock96fe98d2014-08-27 09:36:02 -0400316
317 private void updateCast() {
318 boolean isCasting = false;
319 for (CastDevice device : mCast.getCastDevices()) {
320 if (device.state == CastDevice.STATE_CONNECTING
321 || device.state == CastDevice.STATE_CONNECTED) {
322 isCasting = true;
323 break;
324 }
325 }
326 if (DEBUG) Log.v(TAG, "updateCast: isCasting: " + isCasting);
327 if (isCasting) {
328 mService.setIcon(SLOT_CAST, R.drawable.stat_sys_cast, 0,
329 mContext.getString(R.string.accessibility_casting));
330 }
331 mService.setIconVisibility(SLOT_CAST, isCasting);
332 }
333
Kenny Guy3094d4a2015-04-01 19:14:10 +0100334 private void profileChanged(int userId) {
335 UserManager userManager = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
336 UserInfo user = null;
337 if (userId == UserHandle.USER_CURRENT) {
338 try {
339 user = ActivityManagerNative.getDefault().getCurrentUser();
340 } catch (RemoteException e) {
341 // Ignore
342 }
343 } else {
344 user = userManager.getUserInfo(userId);
345 }
346
347 mManagedProfileFocused = user != null && user.isManagedProfile();
348 if (DEBUG) Log.v(TAG, "profileChanged: mManagedProfileFocused: " + mManagedProfileFocused);
349 // Actually update the icon later when transition starts.
350 }
351
352 private void updateManagedProfile() {
353 if (DEBUG) Log.v(TAG, "updateManagedProfile: mManagedProfileFocused: "
354 + mManagedProfileFocused
355 + " mKeyguardVisible: " + mKeyguardVisible);
356 boolean showIcon = mManagedProfileFocused && !mKeyguardVisible;
357 if (mManagedProfileIconVisible != showIcon) {
358 mService.setIconVisibility(SLOT_MANAGED_PROFILE, showIcon);
359 mManagedProfileIconVisible = showIcon;
360 }
361 }
362
363 private final IUserSwitchObserver.Stub mUserSwitchListener =
364 new IUserSwitchObserver.Stub() {
365 @Override
366 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
Adrian Roos88b11932015-07-22 14:59:48 -0700367 mUserInfoController.reloadUserInfo();
Kenny Guy3094d4a2015-04-01 19:14:10 +0100368 }
369
370 @Override
371 public void onUserSwitchComplete(int newUserId) throws RemoteException {
372 updateAlarm();
373 profileChanged(newUserId);
374 }
375
376 @Override
377 public void onForegroundProfileSwitch(int newProfileId) {
378 profileChanged(newProfileId);
379 }
380 };
381
Jason Monk952d5d82014-10-27 15:28:22 -0400382 private final HotspotController.Callback mHotspotCallback = new HotspotController.Callback() {
383 @Override
384 public void onHotspotChanged(boolean enabled) {
385 mService.setIconVisibility(SLOT_HOTSPOT, enabled);
386 }
387 };
388
John Spurlock96fe98d2014-08-27 09:36:02 -0400389 private final CastController.Callback mCastCallback = new CastController.Callback() {
390 @Override
391 public void onCastDevicesChanged() {
392 updateCast();
393 }
394 };
Kenny Guy3094d4a2015-04-01 19:14:10 +0100395
396 public void appTransitionStarting(long startTime, long duration) {
397 updateManagedProfile();
398 }
399
400 public void setKeyguardShowing(boolean visible) {
401 mKeyguardVisible = visible;
402 updateManagedProfile();
403 }
John Spurlock604a5ee2015-06-01 12:27:22 -0400404
405 public void setCurrentUserSetup(boolean userSetup) {
406 if (mCurrentUserSetup == userSetup) return;
407 mCurrentUserSetup = userSetup;
408 updateAlarm();
409 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800410}