| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| Joe Onorato | 7a0f36b | 2010-06-07 10:24:36 -0700 | [diff] [blame] | 17 | package com.android.server; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 18 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | import android.app.StatusBarManager; |
| 20 | import android.content.BroadcastReceiver; |
| 21 | import android.content.Context; |
| 22 | import android.content.Intent; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | import android.content.pm.PackageManager; |
| 24 | import android.content.res.Resources; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 25 | import android.os.Binder; |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 26 | import android.os.Handler; |
| Svetoslav Ganov | 6179ea3 | 2011-06-28 01:12:41 -0700 | [diff] [blame] | 27 | import android.os.IBinder; |
| 28 | import android.os.RemoteException; |
| Amith Yamasani | 98edc95 | 2012-09-25 14:09:27 -0700 | [diff] [blame] | 29 | import android.os.UserHandle; |
| Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 30 | import android.util.Slog; |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 31 | |
| 32 | import com.android.internal.statusbar.IStatusBar; |
| 33 | import com.android.internal.statusbar.IStatusBarService; |
| 34 | import com.android.internal.statusbar.StatusBarIcon; |
| 35 | import com.android.internal.statusbar.StatusBarIconList; |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 36 | import com.android.internal.statusbar.StatusBarNotification; |
| Dianne Hackborn | a924dc0d | 2011-02-17 14:22:17 -0800 | [diff] [blame] | 37 | import com.android.server.wm.WindowManagerService; |
| The Android Open Source Project | 1059253 | 2009-03-18 17:39:46 -0700 | [diff] [blame] | 38 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 39 | import java.io.FileDescriptor; |
| 40 | import java.io.PrintWriter; |
| 41 | import java.util.ArrayList; |
| 42 | import java.util.HashMap; |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 43 | import java.util.List; |
| 44 | import java.util.Map; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 45 | |
| 46 | |
| 47 | /** |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 48 | * A note on locking: We rely on the fact that calls onto mBar are oneway or |
| 49 | * if they are local, that they just enqueue messages to not deadlock. |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | */ |
| Joe Onorato | 089de88 | 2010-04-12 08:18:45 -0700 | [diff] [blame] | 51 | public class StatusBarManagerService extends IStatusBarService.Stub |
| Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 52 | implements WindowManagerService.OnHardKeyboardStatusChangeListener |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 53 | { |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 54 | static final String TAG = "StatusBarManagerService"; |
| Joe Onorato | 431bb22 | 2010-10-18 19:13:23 -0400 | [diff] [blame] | 55 | static final boolean SPEW = false; |
| Joe Onorato | df7dbb6 | 2009-11-17 10:43:37 -0800 | [diff] [blame] | 56 | |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 57 | final Context mContext; |
| Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 58 | final WindowManagerService mWindowManager; |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 59 | Handler mHandler = new Handler(); |
| 60 | NotificationCallbacks mNotificationCallbacks; |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 61 | volatile IStatusBar mBar; |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 62 | StatusBarIconList mIcons = new StatusBarIconList(); |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 63 | HashMap<IBinder,StatusBarNotification> mNotifications |
| 64 | = new HashMap<IBinder,StatusBarNotification>(); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 65 | |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 66 | // for disabling the status bar |
| 67 | ArrayList<DisableRecord> mDisableRecords = new ArrayList<DisableRecord>(); |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 68 | IBinder mSysUiVisToken = new Binder(); |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 69 | int mDisabled = 0; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 70 | |
| Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 71 | Object mLock = new Object(); |
| Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 72 | // encompasses lights-out mode and other flags defined on View |
| 73 | int mSystemUiVisibility = 0; |
| Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 74 | boolean mMenuVisible = false; |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 75 | int mImeWindowVis = 0; |
| 76 | int mImeBackDisposition; |
| 77 | IBinder mImeToken = null; |
| satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 78 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 79 | private class DisableRecord implements IBinder.DeathRecipient { |
| 80 | String pkg; |
| 81 | int what; |
| 82 | IBinder token; |
| 83 | |
| 84 | public void binderDied() { |
| Joe Onorato | 8a9b220 | 2010-02-26 18:56:32 -0800 | [diff] [blame] | 85 | Slog.i(TAG, "binder died for pkg=" + pkg); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 86 | disable(0, token, pkg); |
| Suchi Amalapurapu | fff2fda | 2009-06-30 21:36:16 -0700 | [diff] [blame] | 87 | token.unlinkToDeath(this, 0); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | |
| 91 | public interface NotificationCallbacks { |
| 92 | void onSetDisabled(int status); |
| 93 | void onClearAll(); |
| Fred Quintana | 6ecaff1 | 2009-09-25 14:23:13 -0700 | [diff] [blame] | 94 | void onNotificationClick(String pkg, String tag, int id); |
| Daniel Sandler | 0f0b11c | 2010-08-04 15:54:58 -0400 | [diff] [blame] | 95 | void onNotificationClear(String pkg, String tag, int id); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 96 | void onPanelRevealed(); |
| Dianne Hackborn | 9d39d0c | 2010-06-24 15:57:42 -0700 | [diff] [blame] | 97 | void onNotificationError(String pkg, String tag, int id, |
| 98 | int uid, int initialPid, String message); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 99 | } |
| 100 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 101 | /** |
| 102 | * Construct the service, add the status bar view to the window manager |
| 103 | */ |
| Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 104 | public StatusBarManagerService(Context context, WindowManagerService windowManager) { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 105 | mContext = context; |
| Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 106 | mWindowManager = windowManager; |
| 107 | mWindowManager.setOnHardKeyboardStatusChangeListener(this); |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 108 | |
| 109 | final Resources res = context.getResources(); |
| Joe Onorato | 75144ea | 2010-06-07 12:36:25 -0700 | [diff] [blame] | 110 | mIcons.defineSlots(res.getStringArray(com.android.internal.R.array.config_statusBarIcons)); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | public void setNotificationCallbacks(NotificationCallbacks listener) { |
| 114 | mNotificationCallbacks = listener; |
| 115 | } |
| 116 | |
| 117 | // ================================================================================ |
| Joe Onorato | 25f95f9 | 2010-04-08 18:37:10 -0500 | [diff] [blame] | 118 | // From IStatusBarService |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 119 | // ================================================================================ |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 120 | public void expandNotificationsPanel() { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 121 | enforceExpandStatusBar(); |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 122 | |
| 123 | if (mBar != null) { |
| 124 | try { |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 125 | mBar.animateExpandNotificationsPanel(); |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 126 | } catch (RemoteException ex) { |
| 127 | } |
| 128 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 129 | } |
| 130 | |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 131 | public void collapsePanels() { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 132 | enforceExpandStatusBar(); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 133 | |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 134 | if (mBar != null) { |
| 135 | try { |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 136 | mBar.animateCollapsePanels(); |
| Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 137 | } catch (RemoteException ex) { |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 142 | public void expandSettingsPanel() { |
| Svetoslav Ganov | e20a177 | 2012-09-25 16:07:46 -0700 | [diff] [blame] | 143 | enforceExpandStatusBar(); |
| 144 | |
| 145 | if (mBar != null) { |
| 146 | try { |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 147 | mBar.animateExpandSettingsPanel(); |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 148 | } catch (RemoteException ex) { |
| 149 | } |
| 150 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | public void disable(int what, IBinder token, String pkg) { |
| 154 | enforceStatusBar(); |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 155 | |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 156 | synchronized (mLock) { |
| 157 | disableLocked(what, token, pkg); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | private void disableLocked(int what, IBinder token, String pkg) { |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 162 | // It's important that the the callback and the call to mBar get done |
| 163 | // in the same order when multiple threads are calling this function |
| 164 | // so they are paired correctly. The messages on the handler will be |
| 165 | // handled in the order they were enqueued, but will be outside the lock. |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 166 | manageDisableListLocked(what, token, pkg); |
| 167 | final int net = gatherDisableActionsLocked(); |
| 168 | if (net != mDisabled) { |
| 169 | mDisabled = net; |
| 170 | mHandler.post(new Runnable() { |
| 171 | public void run() { |
| 172 | mNotificationCallbacks.onSetDisabled(net); |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 173 | } |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 174 | }); |
| 175 | if (mBar != null) { |
| 176 | try { |
| 177 | mBar.disable(net); |
| 178 | } catch (RemoteException ex) { |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 179 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 180 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
| Svetoslav Ganov | 6179ea3 | 2011-06-28 01:12:41 -0700 | [diff] [blame] | 184 | public void setIcon(String slot, String iconPackage, int iconId, int iconLevel, |
| 185 | String contentDescription) { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 186 | enforceStatusBar(); |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 187 | |
| 188 | synchronized (mIcons) { |
| 189 | int index = mIcons.getSlotIndex(slot); |
| 190 | if (index < 0) { |
| 191 | throw new SecurityException("invalid status bar icon slot: " + slot); |
| 192 | } |
| 193 | |
| Amith Yamasani | 98edc95 | 2012-09-25 14:09:27 -0700 | [diff] [blame] | 194 | StatusBarIcon icon = new StatusBarIcon(iconPackage, UserHandle.OWNER, iconId, |
| 195 | iconLevel, 0, |
| Svetoslav Ganov | 6179ea3 | 2011-06-28 01:12:41 -0700 | [diff] [blame] | 196 | contentDescription); |
| Joe Onorato | 66d7d01 | 2010-05-14 10:05:10 -0700 | [diff] [blame] | 197 | //Slog.d(TAG, "setIcon slot=" + slot + " index=" + index + " icon=" + icon); |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 198 | mIcons.setIcon(index, icon); |
| 199 | |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 200 | if (mBar != null) { |
| 201 | try { |
| 202 | mBar.setIcon(index, icon); |
| 203 | } catch (RemoteException ex) { |
| 204 | } |
| 205 | } |
| 206 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 207 | } |
| 208 | |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 209 | public void setIconVisibility(String slot, boolean visible) { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 210 | enforceStatusBar(); |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 211 | |
| Joe Onorato | 514ad663 | 2010-05-13 18:49:00 -0700 | [diff] [blame] | 212 | synchronized (mIcons) { |
| 213 | int index = mIcons.getSlotIndex(slot); |
| 214 | if (index < 0) { |
| 215 | throw new SecurityException("invalid status bar icon slot: " + slot); |
| 216 | } |
| 217 | |
| 218 | StatusBarIcon icon = mIcons.getIcon(index); |
| 219 | if (icon == null) { |
| 220 | return; |
| 221 | } |
| 222 | |
| 223 | if (icon.visible != visible) { |
| 224 | icon.visible = visible; |
| 225 | |
| Joe Onorato | 514ad663 | 2010-05-13 18:49:00 -0700 | [diff] [blame] | 226 | if (mBar != null) { |
| 227 | try { |
| 228 | mBar.setIcon(index, icon); |
| 229 | } catch (RemoteException ex) { |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | public void removeIcon(String slot) { |
| 237 | enforceStatusBar(); |
| 238 | |
| 239 | synchronized (mIcons) { |
| 240 | int index = mIcons.getSlotIndex(slot); |
| 241 | if (index < 0) { |
| 242 | throw new SecurityException("invalid status bar icon slot: " + slot); |
| 243 | } |
| 244 | |
| 245 | mIcons.removeIcon(index); |
| 246 | |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 247 | if (mBar != null) { |
| 248 | try { |
| 249 | mBar.removeIcon(index); |
| 250 | } catch (RemoteException ex) { |
| 251 | } |
| 252 | } |
| 253 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 254 | } |
| 255 | |
| Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 256 | /** |
| 257 | * Hide or show the on-screen Menu key. Only call this from the window manager, typically in |
| 258 | * response to a window with FLAG_NEEDS_MENU_KEY set. |
| 259 | */ |
| Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 260 | public void topAppWindowChanged(final boolean menuVisible) { |
| Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 261 | enforceStatusBar(); |
| 262 | |
| Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 263 | if (SPEW) Slog.d(TAG, (menuVisible?"showing":"hiding") + " MENU key"); |
| Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 264 | |
| 265 | synchronized(mLock) { |
| Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 266 | mMenuVisible = menuVisible; |
| 267 | mHandler.post(new Runnable() { |
| 268 | public void run() { |
| 269 | if (mBar != null) { |
| 270 | try { |
| 271 | mBar.topAppWindowChanged(menuVisible); |
| 272 | } catch (RemoteException ex) { |
| Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 273 | } |
| 274 | } |
| Dianne Hackborn | 7d04932 | 2011-06-14 15:00:32 -0700 | [diff] [blame] | 275 | } |
| 276 | }); |
| Daniel Sandler | e02d808 | 2010-10-08 15:13:22 -0400 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 280 | public void setImeWindowStatus(final IBinder token, final int vis, final int backDisposition) { |
| satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 281 | enforceStatusBar(); |
| 282 | |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 283 | if (SPEW) { |
| 284 | Slog.d(TAG, "swetImeWindowStatus vis=" + vis + " backDisposition=" + backDisposition); |
| 285 | } |
| satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 286 | |
| 287 | synchronized(mLock) { |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 288 | // In case of IME change, we need to call up setImeWindowStatus() regardless of |
| 289 | // mImeWindowVis because mImeWindowVis may not have been set to false when the |
| satok | 06e0744 | 2010-11-02 19:46:55 +0900 | [diff] [blame] | 290 | // previous IME was destroyed. |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 291 | mImeWindowVis = vis; |
| 292 | mImeBackDisposition = backDisposition; |
| 293 | mImeToken = token; |
| satok | 06e0744 | 2010-11-02 19:46:55 +0900 | [diff] [blame] | 294 | mHandler.post(new Runnable() { |
| 295 | public void run() { |
| 296 | if (mBar != null) { |
| 297 | try { |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 298 | mBar.setImeWindowStatus(token, vis, backDisposition); |
| satok | 06e0744 | 2010-11-02 19:46:55 +0900 | [diff] [blame] | 299 | } catch (RemoteException ex) { |
| satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 300 | } |
| 301 | } |
| satok | 06e0744 | 2010-11-02 19:46:55 +0900 | [diff] [blame] | 302 | } |
| 303 | }); |
| satok | 06487a5 | 2010-10-29 11:37:18 +0900 | [diff] [blame] | 304 | } |
| 305 | } |
| 306 | |
| Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 307 | public void setSystemUiVisibility(int vis, int mask) { |
| Joe Onorato | 55bf380 | 2011-01-25 13:42:10 -0800 | [diff] [blame] | 308 | // also allows calls from window manager which is in this process. |
| Joe Onorato | f63b0f4 | 2010-09-12 17:03:19 -0400 | [diff] [blame] | 309 | enforceStatusBarService(); |
| 310 | |
| Jeff Sharkey | 4519a02 | 2011-09-07 23:24:53 -0700 | [diff] [blame] | 311 | if (SPEW) Slog.d(TAG, "setSystemUiVisibility(0x" + Integer.toHexString(vis) + ")"); |
| Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 312 | |
| Joe Onorato | f63b0f4 | 2010-09-12 17:03:19 -0400 | [diff] [blame] | 313 | synchronized (mLock) { |
| Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 314 | updateUiVisibilityLocked(vis, mask); |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 315 | disableLocked(vis & StatusBarManager.DISABLE_MASK, mSysUiVisToken, |
| 316 | "WindowManager.LayoutParams"); |
| Joe Onorato | f63b0f4 | 2010-09-12 17:03:19 -0400 | [diff] [blame] | 317 | } |
| 318 | } |
| 319 | |
| Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 320 | private void updateUiVisibilityLocked(final int vis, final int mask) { |
| Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 321 | if (mSystemUiVisibility != vis) { |
| 322 | mSystemUiVisibility = vis; |
| Joe Onorato | f63b0f4 | 2010-09-12 17:03:19 -0400 | [diff] [blame] | 323 | mHandler.post(new Runnable() { |
| 324 | public void run() { |
| 325 | if (mBar != null) { |
| 326 | try { |
| Dianne Hackborn | 3a3a6cf | 2012-03-26 10:24:04 -0700 | [diff] [blame] | 327 | mBar.setSystemUiVisibility(vis, mask); |
| Joe Onorato | f63b0f4 | 2010-09-12 17:03:19 -0400 | [diff] [blame] | 328 | } catch (RemoteException ex) { |
| Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 329 | } |
| 330 | } |
| Joe Onorato | f63b0f4 | 2010-09-12 17:03:19 -0400 | [diff] [blame] | 331 | } |
| 332 | }); |
| Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 333 | } |
| 334 | } |
| 335 | |
| Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 336 | public void setHardKeyboardEnabled(final boolean enabled) { |
| 337 | mHandler.post(new Runnable() { |
| 338 | public void run() { |
| 339 | mWindowManager.setHardKeyboardEnabled(enabled); |
| 340 | } |
| 341 | }); |
| 342 | } |
| 343 | |
| 344 | @Override |
| 345 | public void onHardKeyboardStatusChange(final boolean available, final boolean enabled) { |
| 346 | mHandler.post(new Runnable() { |
| 347 | public void run() { |
| 348 | if (mBar != null) { |
| 349 | try { |
| 350 | mBar.setHardKeyboardStatus(available, enabled); |
| 351 | } catch (RemoteException ex) { |
| 352 | } |
| 353 | } |
| 354 | } |
| 355 | }); |
| 356 | } |
| 357 | |
| Michael Jurka | 3b1fc47 | 2011-06-13 10:54:40 -0700 | [diff] [blame] | 358 | @Override |
| 359 | public void toggleRecentApps() { |
| 360 | if (mBar != null) { |
| 361 | try { |
| 362 | mBar.toggleRecentApps(); |
| 363 | } catch (RemoteException ex) {} |
| 364 | } |
| 365 | } |
| 366 | |
| Michael Jurka | 7f2668c | 2012-03-27 07:49:52 -0700 | [diff] [blame] | 367 | @Override |
| 368 | public void preloadRecentApps() { |
| 369 | if (mBar != null) { |
| 370 | try { |
| 371 | mBar.preloadRecentApps(); |
| 372 | } catch (RemoteException ex) {} |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | @Override |
| 377 | public void cancelPreloadRecentApps() { |
| 378 | if (mBar != null) { |
| 379 | try { |
| 380 | mBar.cancelPreloadRecentApps(); |
| 381 | } catch (RemoteException ex) {} |
| 382 | } |
| 383 | } |
| 384 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 385 | private void enforceStatusBar() { |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 386 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.STATUS_BAR, |
| Joe Onorato | 089de88 | 2010-04-12 08:18:45 -0700 | [diff] [blame] | 387 | "StatusBarManagerService"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | private void enforceExpandStatusBar() { |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 391 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.EXPAND_STATUS_BAR, |
| Joe Onorato | 089de88 | 2010-04-12 08:18:45 -0700 | [diff] [blame] | 392 | "StatusBarManagerService"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 393 | } |
| 394 | |
| Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 395 | private void enforceStatusBarService() { |
| 396 | mContext.enforceCallingOrSelfPermission(android.Manifest.permission.STATUS_BAR_SERVICE, |
| 397 | "StatusBarManagerService"); |
| 398 | } |
| 399 | |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 400 | // ================================================================================ |
| 401 | // Callbacks from the status bar service. |
| 402 | // ================================================================================ |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 403 | public void registerStatusBar(IStatusBar bar, StatusBarIconList iconList, |
| Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 404 | List<IBinder> notificationKeys, List<StatusBarNotification> notifications, |
| satok | cd7cd29 | 2010-11-20 15:46:23 +0900 | [diff] [blame] | 405 | int switches[], List<IBinder> binders) { |
| Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 406 | enforceStatusBarService(); |
| 407 | |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 408 | Slog.i(TAG, "registerStatusBar bar=" + bar); |
| 409 | mBar = bar; |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 410 | synchronized (mIcons) { |
| 411 | iconList.copyFrom(mIcons); |
| 412 | } |
| 413 | synchronized (mNotifications) { |
| 414 | for (Map.Entry<IBinder,StatusBarNotification> e: mNotifications.entrySet()) { |
| 415 | notificationKeys.add(e.getKey()); |
| 416 | notifications.add(e.getValue()); |
| 417 | } |
| 418 | } |
| Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 419 | synchronized (mLock) { |
| Joe Onorato | e4c7b3f | 2010-10-30 12:15:03 -0700 | [diff] [blame] | 420 | switches[0] = gatherDisableActionsLocked(); |
| Daniel Sandler | 60ee256 | 2011-07-22 12:34:33 -0400 | [diff] [blame] | 421 | switches[1] = mSystemUiVisibility; |
| Joe Onorato | e4c7b3f | 2010-10-30 12:15:03 -0700 | [diff] [blame] | 422 | switches[2] = mMenuVisible ? 1 : 0; |
| Joe Onorato | 857fd9b | 2011-01-27 15:08:35 -0800 | [diff] [blame] | 423 | switches[3] = mImeWindowVis; |
| 424 | switches[4] = mImeBackDisposition; |
| 425 | binders.add(mImeToken); |
| Joe Onorato | 9305647 | 2010-09-10 10:30:46 -0400 | [diff] [blame] | 426 | } |
| Jeff Brown | 2992ea7 | 2011-01-28 22:04:14 -0800 | [diff] [blame] | 427 | switches[5] = mWindowManager.isHardKeyboardAvailable() ? 1 : 0; |
| 428 | switches[6] = mWindowManager.isHardKeyboardEnabled() ? 1 : 0; |
| Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 429 | } |
| Joe Onorato | aaba60b | 2010-05-23 15:18:41 -0400 | [diff] [blame] | 430 | |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 431 | /** |
| Joe Onorato | f1f2591 | 2010-06-07 11:52:41 -0700 | [diff] [blame] | 432 | * The status bar service should call this each time the user brings the panel from |
| 433 | * invisible to visible in order to clear the notification light. |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 434 | */ |
| Joe Onorato | f1f2591 | 2010-06-07 11:52:41 -0700 | [diff] [blame] | 435 | public void onPanelRevealed() { |
| Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 436 | enforceStatusBarService(); |
| 437 | |
| Joe Onorato | f1f2591 | 2010-06-07 11:52:41 -0700 | [diff] [blame] | 438 | // tell the notification manager to turn off the lights. |
| 439 | mNotificationCallbacks.onPanelRevealed(); |
| Joe Onorato | 4762c2d | 2010-05-17 15:42:59 -0700 | [diff] [blame] | 440 | } |
| 441 | |
| Joe Onorato | aaba60b | 2010-05-23 15:18:41 -0400 | [diff] [blame] | 442 | public void onNotificationClick(String pkg, String tag, int id) { |
| Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 443 | enforceStatusBarService(); |
| 444 | |
| Joe Onorato | aaba60b | 2010-05-23 15:18:41 -0400 | [diff] [blame] | 445 | mNotificationCallbacks.onNotificationClick(pkg, tag, id); |
| 446 | } |
| 447 | |
| Dianne Hackborn | 9d39d0c | 2010-06-24 15:57:42 -0700 | [diff] [blame] | 448 | public void onNotificationError(String pkg, String tag, int id, |
| 449 | int uid, int initialPid, String message) { |
| Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 450 | enforceStatusBarService(); |
| 451 | |
| Joe Onorato | 005847b | 2010-06-04 16:08:02 -0400 | [diff] [blame] | 452 | // WARNING: this will call back into us to do the remove. Don't hold any locks. |
| Dianne Hackborn | 9d39d0c | 2010-06-24 15:57:42 -0700 | [diff] [blame] | 453 | mNotificationCallbacks.onNotificationError(pkg, tag, id, uid, initialPid, message); |
| Joe Onorato | 005847b | 2010-06-04 16:08:02 -0400 | [diff] [blame] | 454 | } |
| 455 | |
| Daniel Sandler | 0f0b11c | 2010-08-04 15:54:58 -0400 | [diff] [blame] | 456 | public void onNotificationClear(String pkg, String tag, int id) { |
| 457 | enforceStatusBarService(); |
| 458 | |
| 459 | mNotificationCallbacks.onNotificationClear(pkg, tag, id); |
| 460 | } |
| 461 | |
| Joe Onorato | aaba60b | 2010-05-23 15:18:41 -0400 | [diff] [blame] | 462 | public void onClearAllNotifications() { |
| Joe Onorato | 8bc6c51 | 2010-06-04 16:21:12 -0400 | [diff] [blame] | 463 | enforceStatusBarService(); |
| 464 | |
| Joe Onorato | aaba60b | 2010-05-23 15:18:41 -0400 | [diff] [blame] | 465 | mNotificationCallbacks.onClearAll(); |
| 466 | } |
| 467 | |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 468 | // ================================================================================ |
| 469 | // Callbacks for NotificationManagerService. |
| 470 | // ================================================================================ |
| 471 | public IBinder addNotification(StatusBarNotification notification) { |
| 472 | synchronized (mNotifications) { |
| Joe Onorato | a0c56fe | 2010-05-20 10:21:52 -0700 | [diff] [blame] | 473 | IBinder key = new Binder(); |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 474 | mNotifications.put(key, notification); |
| Joe Onorato | e345fff | 2010-05-23 15:18:27 -0400 | [diff] [blame] | 475 | if (mBar != null) { |
| 476 | try { |
| 477 | mBar.addNotification(key, notification); |
| 478 | } catch (RemoteException ex) { |
| 479 | } |
| 480 | } |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 481 | return key; |
| 482 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 483 | } |
| 484 | |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 485 | public void updateNotification(IBinder key, StatusBarNotification notification) { |
| 486 | synchronized (mNotifications) { |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 487 | if (!mNotifications.containsKey(key)) { |
| 488 | throw new IllegalArgumentException("updateNotification key not found: " + key); |
| 489 | } |
| 490 | mNotifications.put(key, notification); |
| Joe Onorato | e345fff | 2010-05-23 15:18:27 -0400 | [diff] [blame] | 491 | if (mBar != null) { |
| 492 | try { |
| 493 | mBar.updateNotification(key, notification); |
| 494 | } catch (RemoteException ex) { |
| 495 | } |
| 496 | } |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 497 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | public void removeNotification(IBinder key) { |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 501 | synchronized (mNotifications) { |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 502 | final StatusBarNotification n = mNotifications.remove(key); |
| 503 | if (n == null) { |
| Daniel Sandler | fe0806a | 2012-05-16 12:41:33 -0400 | [diff] [blame] | 504 | Slog.e(TAG, "removeNotification key not found: " + key); |
| 505 | return; |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 506 | } |
| Joe Onorato | e345fff | 2010-05-23 15:18:27 -0400 | [diff] [blame] | 507 | if (mBar != null) { |
| 508 | try { |
| 509 | mBar.removeNotification(key); |
| 510 | } catch (RemoteException ex) { |
| 511 | } |
| 512 | } |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 513 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 514 | } |
| Joe Onorato | 2314aab | 2010-04-08 16:41:23 -0500 | [diff] [blame] | 515 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 516 | // ================================================================================ |
| 517 | // Can be called from any thread |
| 518 | // ================================================================================ |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 519 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 520 | // lock on mDisableRecords |
| 521 | void manageDisableListLocked(int what, IBinder token, String pkg) { |
| 522 | if (SPEW) { |
| Joe Onorato | f3f0e05 | 2010-05-14 18:49:29 -0700 | [diff] [blame] | 523 | Slog.d(TAG, "manageDisableList what=0x" + Integer.toHexString(what) + " pkg=" + pkg); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 524 | } |
| 525 | // update the list |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 526 | final int N = mDisableRecords.size(); |
| 527 | DisableRecord tok = null; |
| 528 | int i; |
| 529 | for (i=0; i<N; i++) { |
| 530 | DisableRecord t = mDisableRecords.get(i); |
| 531 | if (t.token == token) { |
| 532 | tok = t; |
| 533 | break; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 534 | } |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 535 | } |
| 536 | if (what == 0 || !token.isBinderAlive()) { |
| 537 | if (tok != null) { |
| 538 | mDisableRecords.remove(i); |
| 539 | tok.token.unlinkToDeath(tok, 0); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 540 | } |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 541 | } else { |
| 542 | if (tok == null) { |
| 543 | tok = new DisableRecord(); |
| 544 | try { |
| 545 | token.linkToDeath(tok, 0); |
| 546 | } |
| 547 | catch (RemoteException ex) { |
| 548 | return; // give up |
| 549 | } |
| 550 | mDisableRecords.add(tok); |
| 551 | } |
| 552 | tok.what = what; |
| 553 | tok.token = token; |
| 554 | tok.pkg = pkg; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 555 | } |
| 556 | } |
| 557 | |
| 558 | // lock on mDisableRecords |
| 559 | int gatherDisableActionsLocked() { |
| 560 | final int N = mDisableRecords.size(); |
| 561 | // gather the new net flags |
| 562 | int net = 0; |
| 563 | for (int i=0; i<N; i++) { |
| 564 | net |= mDisableRecords.get(i).what; |
| 565 | } |
| 566 | return net; |
| 567 | } |
| 568 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 569 | // ================================================================================ |
| 570 | // Always called from UI thread |
| 571 | // ================================================================================ |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 572 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 573 | protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { |
| 574 | if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP) |
| 575 | != PackageManager.PERMISSION_GRANTED) { |
| 576 | pw.println("Permission Denial: can't dump StatusBar from from pid=" |
| 577 | + Binder.getCallingPid() |
| 578 | + ", uid=" + Binder.getCallingUid()); |
| 579 | return; |
| 580 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 581 | |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 582 | synchronized (mIcons) { |
| 583 | mIcons.dump(pw); |
| 584 | } |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 585 | |
| 586 | synchronized (mNotifications) { |
| Joe Onorato | 75199e3 | 2010-05-29 17:22:51 -0400 | [diff] [blame] | 587 | int i=0; |
| 588 | pw.println("Notification list:"); |
| 589 | for (Map.Entry<IBinder,StatusBarNotification> e: mNotifications.entrySet()) { |
| 590 | pw.printf(" %2d: %s\n", i, e.getValue().toString()); |
| 591 | i++; |
| 592 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 593 | } |
| Joe Onorato | 18e69df | 2010-05-17 22:26:12 -0700 | [diff] [blame] | 594 | |
| Joe Onorato | 7bb8eeb | 2011-01-27 16:00:58 -0800 | [diff] [blame] | 595 | synchronized (mLock) { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 596 | final int N = mDisableRecords.size(); |
| 597 | pw.println(" mDisableRecords.size=" + N |
| 598 | + " mDisabled=0x" + Integer.toHexString(mDisabled)); |
| 599 | for (int i=0; i<N; i++) { |
| 600 | DisableRecord tok = mDisableRecords.get(i); |
| 601 | pw.println(" [" + i + "] what=0x" + Integer.toHexString(tok.what) |
| 602 | + " pkg=" + tok.pkg + " token=" + tok.token); |
| 603 | } |
| 604 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 605 | } |
| 606 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 607 | private BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() { |
| 608 | public void onReceive(Context context, Intent intent) { |
| 609 | String action = intent.getAction(); |
| Joe Onorato | f9e0e6b | 2009-09-08 16:24:36 -0400 | [diff] [blame] | 610 | if (Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(action) |
| 611 | || Intent.ACTION_SCREEN_OFF.equals(action)) { |
| Daniel Sandler | 11cf1781 | 2012-09-27 14:03:08 -0400 | [diff] [blame^] | 612 | collapsePanels(); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 613 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 614 | /* |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 615 | else if (Telephony.Intents.SPN_STRINGS_UPDATED_ACTION.equals(action)) { |
| 616 | updateNetworkName(intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_SPN, false), |
| 617 | intent.getStringExtra(Telephony.Intents.EXTRA_SPN), |
| 618 | intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_PLMN, false), |
| 619 | intent.getStringExtra(Telephony.Intents.EXTRA_PLMN)); |
| 620 | } |
| 621 | else if (Intent.ACTION_CONFIGURATION_CHANGED.equals(action)) { |
| 622 | updateResources(); |
| 623 | } |
| Joe Onorato | 0cbda99 | 2010-05-02 16:28:15 -0700 | [diff] [blame] | 624 | */ |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 625 | } |
| 626 | }; |
| 627 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 628 | } |