am fe6fd242: Merge "Mask out the non public bits, not the public ones." into honeycomb

* commit 'fe6fd242867022576a99fcd5fd6078fb7bab8451':
  Mask out the non public bits, not the public ones.
This commit is contained in:
Joe Onorato
2011-01-31 11:26:51 -08:00
committed by Android Git Automerger

View File

@@ -10940,7 +10940,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
public void dispatchSystemUiVisibilityChanged(int visibility) {
if (mOnSystemUiVisibilityChangeListener != null) {
mOnSystemUiVisibilityChangeListener.onSystemUiVisibilityChange(
visibility & ~PUBLIC_STATUS_BAR_VISIBILITY_MASK);
visibility & PUBLIC_STATUS_BAR_VISIBILITY_MASK);
}
}