Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/CollapsedStatusBarFragment.java +14 −0 Original line number Diff line number Diff line Loading @@ -163,6 +163,20 @@ public class CollapsedStatusBarFragment extends Fragment implements CommandQueue notificationIconArea.addView(mNotificationIconAreaInner); // 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/src/com/android/systemui/statusbar/phone/CollapsedStatusBarFragment.java +14 −0 Original line number Diff line number Diff line Loading @@ -163,6 +163,20 @@ public class CollapsedStatusBarFragment extends Fragment implements CommandQueue notificationIconArea.addView(mNotificationIconAreaInner); // 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