Merge "Fixes for QS:" into jb-mr1-dev

This commit is contained in:
Daniel Sandler
2012-10-17 11:05:20 -07:00
committed by Android (Google) Code Review
2 changed files with 12 additions and 2 deletions

View File

@@ -1079,7 +1079,12 @@ public class PhoneStatusBar extends BaseStatusBar {
+ " any=" + any + " clearable=" + clearable);
}
if (mClearButton.isShown()) {
if (mHasFlipSettings
&& mFlipSettingsView != null
&& mFlipSettingsView.getVisibility() == View.VISIBLE) {
// the flip settings panel is showing; we should not be shown
mClearButton.setVisibility(View.INVISIBLE);
} else if (mClearButton.isShown()) {
if (clearable != (mClearButton.getAlpha() == 1.0f)) {
ObjectAnimator clearAnimation = ObjectAnimator.ofFloat(
mClearButton, "alpha", clearable ? 1.0f : 0.0f).setDuration(250);
@@ -1522,6 +1527,10 @@ public class PhoneStatusBar extends BaseStatusBar {
mStatusBarView.collapseAllPanels(true);
}
void makeExpandedInvisibleSoon() {
mHandler.postDelayed(new Runnable() { public void run() { makeExpandedInvisible(); }}, 50);
}
void makeExpandedInvisible() {
if (SPEW) Slog.d(TAG, "makeExpandedInvisible: mExpandedVisible=" + mExpandedVisible
+ " mExpandedVisible=" + mExpandedVisible);

View File

@@ -154,7 +154,8 @@ public class PhoneStatusBarView extends PanelBar {
@Override
public void onAllPanelsCollapsed() {
super.onAllPanelsCollapsed();
mBar.makeExpandedInvisible();
// give animations time to settle
mBar.makeExpandedInvisibleSoon();
mFadingPanel = null;
mLastFullyOpenedPanel = null;
}