File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/com/android/systemui/statusbar/phone Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 3535 android : layout_width =" @dimen/notification_panel_width"
3636 android : layout_height =" match_parent"
3737 android : layout_gravity =" center_horizontal|top"
38+ android : visibility =" invisible"
3839 />
3940
4041</com .android.systemui.statusbar.phone.StatusBarWindowView>
Original file line number Diff line number Diff line change 3434 <include layout =" @layout/status_bar_expanded"
3535 android : layout_width =" match_parent"
3636 android : layout_height =" match_parent"
37+ android : visibility =" invisible"
3738 />
3839
3940</com .android.systemui.statusbar.phone.StatusBarWindowView>
Original file line number Diff line number Diff line change @@ -996,6 +996,7 @@ private void makeExpandedVisible() {
996996 }
997997
998998 mExpandedVisible = true ;
999+ mNotificationPanel .setVisibility (View .VISIBLE );
9991000
10001001 updateExpandedViewPos (EXPANDED_LEAVE_ALONE );
10011002
@@ -1089,7 +1090,7 @@ void performCollapse() {
10891090 }
10901091 mExpandedVisible = false ;
10911092 visibilityChanged (false );
1092- // mNotificationPanel.setVisibility(View.GONE );
1093+ mNotificationPanel .setVisibility (View .INVISIBLE );
10931094
10941095 // Shrink the window to the size of the status bar only
10951096 WindowManager .LayoutParams lp = (WindowManager .LayoutParams ) mStatusBarWindow .getLayoutParams ();
You can’t perform that action at this time.
0 commit comments