diff options
author | Joe Onorato <joeo@android.com> | 2010-06-07 12:36:25 -0700 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2010-06-09 14:33:31 -0700 |
commit | 75144ea38e79e3827e69a9f5b53a6fd3a74c4df5 (patch) | |
tree | 22151ca24153ffaafbdca7f702139e537a834a45 /packages/SystemUI | |
parent | f1f259165ffaa4095afbd50fea47ed091cbc14b3 (diff) | |
download | frameworks_base-75144ea38e79e3827e69a9f5b53a6fd3a74c4df5.zip frameworks_base-75144ea38e79e3827e69a9f5b53a6fd3a74c4df5.tar.gz frameworks_base-75144ea38e79e3827e69a9f5b53a6fd3a74c4df5.tar.bz2 |
Move the status bar icon list, hopefully for the last time.
Change-Id: Ie495a41dac03e1fe5ddccefcbd2a0673090a6db1
Diffstat (limited to 'packages/SystemUI')
-rw-r--r-- | packages/SystemUI/res/values/arrays.xml | 28 | ||||
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java | 2 |
2 files changed, 0 insertions, 30 deletions
diff --git a/packages/SystemUI/res/values/arrays.xml b/packages/SystemUI/res/values/arrays.xml deleted file mode 100644 index dbb0e0f..0000000 --- a/packages/SystemUI/res/values/arrays.xml +++ /dev/null @@ -1,28 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* //device/apps/common/assets/res/any/colors.xml -** -** Copyright 2006, The Android Open Source Project -** -** Licensed under the Apache License, Version 2.0 (the "License"); -** you may not use this file except in compliance with the License. -** You may obtain a copy of the License at -** -** http://www.apache.org/licenses/LICENSE-2.0 -** -** Unless required by applicable law or agreed to in writing, software -** distributed under the License is distributed on an "AS IS" BASIS, -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -** See the License for the specific language governing permissions and -** limitations under the License. -*/ ---> -<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - - <!-- Do not translate. Defines the slots for the right-hand side icons. That is to say, the - icons in the status bar that are not notifications. --> - <string-array name="status_bar_icon_order"> - <item><xliff:g id="id">TODO: Remove; not used.</xliff:g></item> - </string-array> - -</resources> diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java b/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java index d93a6c9..a7e5e31 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/PhoneStatusBarService.java @@ -116,7 +116,6 @@ public class PhoneStatusBarService extends StatusBarService { Object mQueueLock = new Object(); // icons - String[] mRightIconSlots; LinearLayout mIcons; IconMerger mNotificationIcons; LinearLayout mStatusIcons; @@ -202,7 +201,6 @@ public class PhoneStatusBarService extends StatusBarService { // ================================================================================ private void makeStatusBarView(Context context) { Resources res = context.getResources(); - mRightIconSlots = res.getStringArray(R.array.status_bar_icon_order); mHeight = res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height); mIconWidth = mHeight; |