Loading packages/SystemUI/res/layout/status_bar.xml +0 −1 Original line number Diff line number Diff line Loading @@ -84,7 +84,6 @@ <com.android.systemui.statusbar.AlphaOptimizedFrameLayout android:id="@+id/notification_icon_area" android:visibility="gone" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/CollapsedStatusBarFragment.java +14 −0 Original line number Diff line number Diff line Loading @@ -177,6 +177,20 @@ public class CollapsedStatusBarFragment extends Fragment implements CommandQueue // Default to showing until we know otherwise. showNotificationIconArea(false); showHideNotificationIconArea(true) } public void showHideNotificationIconArea(boolean isHide){ ViewGroup notificationIconArea = mStatusBar.findViewById(R.id.notification_icon_area); if(isHide){ notificationIconArea.setVisibility(View.GONE); } else { notificationIconArea.setVisibility(View.INVISIBLE); } } @Override Loading Loading
packages/SystemUI/res/layout/status_bar.xml +0 −1 Original line number Diff line number Diff line Loading @@ -84,7 +84,6 @@ <com.android.systemui.statusbar.AlphaOptimizedFrameLayout android:id="@+id/notification_icon_area" android:visibility="gone" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/CollapsedStatusBarFragment.java +14 −0 Original line number Diff line number Diff line Loading @@ -177,6 +177,20 @@ public class CollapsedStatusBarFragment extends Fragment implements CommandQueue // Default to showing until we know otherwise. showNotificationIconArea(false); showHideNotificationIconArea(true) } public void showHideNotificationIconArea(boolean isHide){ ViewGroup notificationIconArea = mStatusBar.findViewById(R.id.notification_icon_area); if(isHide){ notificationIconArea.setVisibility(View.GONE); } else { notificationIconArea.setVisibility(View.INVISIBLE); } } @Override Loading