diff options
| author | 2011-08-18 12:52:12 -0700 | |
|---|---|---|
| committer | 2011-08-18 12:52:12 -0700 | |
| commit | 64b12615bc04bbc85dccad7325b7e9c017bbd1c8 (patch) | |
| tree | f322f49a2855719319ac7eb348b739840f3a23c8 | |
| parent | 5293bfa57a5dbc7982b3dbb5992e0acef9362226 (diff) | |
| parent | d714148bd2752c63a46f51b12cea288fb1f10528 (diff) | |
Merge "Remove 'no notifications' label for now."
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index 1edc351eaa56..28cd05ef1abc 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -316,8 +316,8 @@ public class PhoneStatusBar extends StatusBar { mPile = (ViewGroup)expanded.findViewById(R.id.latestItems); mExpandedContents = mPile; // was: expanded.findViewById(R.id.notificationLinearLayout); mNoNotificationsTitle = (TextView)expanded.findViewById(R.id.noNotificationsTitle); - mNoNotificationsTitle.setAlpha(0f); - mNoNotificationsTitle.setVisibility(View.VISIBLE); + mNoNotificationsTitle.setVisibility(View.GONE); // disabling for now + mClearButton = expanded.findViewById(R.id.clear_all_button); mClearButton.setOnClickListener(mClearButtonListener); mClearButton.setAlpha(0f); @@ -1026,6 +1026,7 @@ public class PhoneStatusBar extends StatusBar { mClearButton.setAlpha(clearable ? 1.0f : 0.0f); } + /* if (mNoNotificationsTitle.isShown()) { if (any != (mNoNotificationsTitle.getAlpha() == 0.0f)) { ObjectAnimator a = ObjectAnimator.ofFloat(mNoNotificationsTitle, "alpha", @@ -1037,6 +1038,7 @@ public class PhoneStatusBar extends StatusBar { } else { mNoNotificationsTitle.setAlpha(any ? 0.0f : 0.75f); } + */ } |