Loading packages/SystemUI/src/com/android/systemui/RoundedCorners.java +11 −10 Original line number Diff line number Diff line Loading @@ -93,8 +93,8 @@ public class RoundedCorners extends SystemUI implements Tunable { private void setupPadding(int padding) { // Add some padding to all the content near the edge of the screen. StatusBar sb = getComponent(StatusBar.class); View statusBar = sb.getStatusBarWindow(); View statusBar = (sb != null ? sb.getStatusBarWindow() : null); if (statusBar != null) { TunablePadding.addTunablePadding(statusBar.findViewById(R.id.keyguard_header), PADDING, padding, FLAG_END); Loading @@ -104,6 +104,7 @@ public class RoundedCorners extends SystemUI implements Tunable { fragmentHostManager.addTagListener(QS.TAG, new TunablePaddingTagListener(padding, R.id.header)); } } private WindowManager.LayoutParams getWindowLayoutParams() { final WindowManager.LayoutParams lp = new WindowManager.LayoutParams( Loading Loading
packages/SystemUI/src/com/android/systemui/RoundedCorners.java +11 −10 Original line number Diff line number Diff line Loading @@ -93,8 +93,8 @@ public class RoundedCorners extends SystemUI implements Tunable { private void setupPadding(int padding) { // Add some padding to all the content near the edge of the screen. StatusBar sb = getComponent(StatusBar.class); View statusBar = sb.getStatusBarWindow(); View statusBar = (sb != null ? sb.getStatusBarWindow() : null); if (statusBar != null) { TunablePadding.addTunablePadding(statusBar.findViewById(R.id.keyguard_header), PADDING, padding, FLAG_END); Loading @@ -104,6 +104,7 @@ public class RoundedCorners extends SystemUI implements Tunable { fragmentHostManager.addTagListener(QS.TAG, new TunablePaddingTagListener(padding, R.id.header)); } } private WindowManager.LayoutParams getWindowLayoutParams() { final WindowManager.LayoutParams lp = new WindowManager.LayoutParams( Loading