blob: 46b52e11223f47cddcce464d09745176ab1e4ea4 [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
17
18package android.app;
19
20import android.content.Context;
21import android.os.Binder;
22import android.os.RemoteException;
23import android.os.IBinder;
24import android.os.ServiceManager;
Joe Onorato7bb8eeb2011-01-27 16:00:58 -080025import android.view.View;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026
Joe Onorato0cbda992010-05-02 16:28:15 -070027import com.android.internal.statusbar.IStatusBarService;
28
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029/**
30 * Allows an app to control the status bar.
31 *
32 * @hide
33 */
34public class StatusBarManager {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035
Joe Onorato7bb8eeb2011-01-27 16:00:58 -080036 public static final int DISABLE_EXPAND = View.STATUS_BAR_DISABLE_EXPAND;
37 public static final int DISABLE_NOTIFICATION_ICONS = View.STATUS_BAR_DISABLE_NOTIFICATION_ICONS;
38 public static final int DISABLE_NOTIFICATION_ALERTS
39 = View.STATUS_BAR_DISABLE_NOTIFICATION_ALERTS;
40 public static final int DISABLE_NOTIFICATION_TICKER
41 = View.STATUS_BAR_DISABLE_NOTIFICATION_TICKER;
42 public static final int DISABLE_SYSTEM_INFO = View.STATUS_BAR_DISABLE_SYSTEM_INFO;
43 public static final int DISABLE_NAVIGATION = View.STATUS_BAR_DISABLE_NAVIGATION;
44 public static final int DISABLE_CLOCK = View.STATUS_BAR_DISABLE_CLOCK;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046 public static final int DISABLE_NONE = 0x00000000;
47
Joe Onorato7bb8eeb2011-01-27 16:00:58 -080048 public static final int DISABLE_MASK = DISABLE_EXPAND | DISABLE_NOTIFICATION_ICONS
49 | DISABLE_NOTIFICATION_ALERTS | DISABLE_NOTIFICATION_TICKER
50 | DISABLE_SYSTEM_INFO| DISABLE_NAVIGATION | DISABLE_CLOCK;
51
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 private Context mContext;
Joe Onorato25f95f92010-04-08 18:37:10 -050053 private IStatusBarService mService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 private IBinder mToken = new Binder();
55
56 StatusBarManager(Context context) {
57 mContext = context;
Joe Onorato25f95f92010-04-08 18:37:10 -050058 mService = IStatusBarService.Stub.asInterface(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
60 }
61
62 /**
63 * Disable some features in the status bar. Pass the bitwise-or of the DISABLE_* flags.
64 * To re-enable everything, pass {@link #DISABLE_NONE}.
65 */
66 public void disable(int what) {
67 try {
68 mService.disable(what, mToken, mContext.getPackageName());
69 } catch (RemoteException ex) {
70 // system process is dead anyway.
71 throw new RuntimeException(ex);
72 }
73 }
74
75 /**
76 * Expand the status bar.
77 */
78 public void expand() {
79 try {
Joe Onoratof3f0e052010-05-14 18:49:29 -070080 mService.expand();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 } catch (RemoteException ex) {
82 // system process is dead anyway.
83 throw new RuntimeException(ex);
84 }
85 }
86
87 /**
88 * Collapse the status bar.
89 */
90 public void collapse() {
91 try {
Joe Onoratof3f0e052010-05-14 18:49:29 -070092 mService.collapse();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 } catch (RemoteException ex) {
94 // system process is dead anyway.
95 throw new RuntimeException(ex);
96 }
97 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098
Joe Onorato0cbda992010-05-02 16:28:15 -070099 public void setIcon(String slot, int iconId, int iconLevel) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 try {
Joe Onorato0cbda992010-05-02 16:28:15 -0700101 mService.setIcon(slot, mContext.getPackageName(), iconId, iconLevel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 } catch (RemoteException ex) {
103 // system process is dead anyway.
104 throw new RuntimeException(ex);
105 }
106 }
107
Joe Onorato0cbda992010-05-02 16:28:15 -0700108 public void removeIcon(String slot) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 try {
Joe Onorato0cbda992010-05-02 16:28:15 -0700110 mService.removeIcon(slot);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 } catch (RemoteException ex) {
112 // system process is dead anyway.
113 throw new RuntimeException(ex);
114 }
115 }
Joe Onorato798ac4c2010-05-27 16:39:00 -0400116
117 public void setIconVisibility(String slot, boolean visible) {
118 try {
119 mService.setIconVisibility(slot, visible);
120 } catch (RemoteException ex) {
121 // system process is dead anyway.
122 throw new RuntimeException(ex);
123 }
124 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125}