File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
services/java/com/android/server/status Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -289,6 +289,7 @@ private void makeStatusBarView(Context context) {
289289 mScrollView = (ScrollView )expanded .findViewById (R .id .scroll );
290290 mNotificationLinearLayout = expanded .findViewById (R .id .notificationLinearLayout );
291291
292+ mExpandedView .setVisibility (View .GONE );
292293 mOngoingTitle .setVisibility (View .GONE );
293294 mLatestTitle .setVisibility (View .GONE );
294295
@@ -970,6 +971,7 @@ private void makeExpandedVisible() {
970971 mExpandedDialog .getWindow ().setAttributes (mExpandedParams );
971972 mExpandedView .requestFocus (View .FOCUS_FORWARD );
972973 mTrackingView .setVisibility (View .VISIBLE );
974+ mExpandedView .setVisibility (View .VISIBLE );
973975
974976 if (!mTicking ) {
975977 setDateViewVisibility (true , com .android .internal .R .anim .fade_in );
@@ -1054,6 +1056,7 @@ void performCollapse() {
10541056 mExpandedParams .flags &= ~WindowManager .LayoutParams .FLAG_ALT_FOCUSABLE_IM ;
10551057 mExpandedDialog .getWindow ().setAttributes (mExpandedParams );
10561058 mTrackingView .setVisibility (View .GONE );
1059+ mExpandedView .setVisibility (View .GONE );
10571060
10581061 if ((mDisabled & StatusBarManager .DISABLE_NOTIFICATION_ICONS ) == 0 ) {
10591062 setNotificationIconVisibility (true , com .android .internal .R .anim .fade_in );
You can’t perform that action at this time.
0 commit comments