Loading packages/SystemUI/res/values/dimens.xml +2 −2 Original line number Diff line number Diff line Loading @@ -174,7 +174,7 @@ <dimen name="status_bar_clock_size">14sp</dimen> <!-- The starting padding for the clock in the status bar. --> <dimen name="status_bar_clock_starting_padding">7dp</dimen> <dimen name="status_bar_clock_starting_padding">4dp</dimen> <!-- The end padding for the clock in the status bar. --> <dimen name="status_bar_clock_end_padding">0dp</dimen> Loading Loading @@ -395,7 +395,7 @@ <dimen name="status_bar_icon_horizontal_margin">0sp</dimen> <!-- the padding on the start of the statusbar --> <dimen name="status_bar_padding_start">8dp</dimen> <dimen name="status_bar_padding_start">4dp</dimen> <!-- the padding on the end of the statusbar --> <dimen name="status_bar_padding_end">4dp</dimen> Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/dagger/StatusBarFragmentModule.java +3 −1 Original line number Diff line number Diff line Loading @@ -91,7 +91,9 @@ public interface StatusBarFragmentModule { @StatusBarFragmentScope @Named(OPERATOR_NAME_VIEW) static View provideOperatorNameView(@RootView PhoneStatusBarView view) { return ((ViewStub) view.findViewById(R.id.operator_name_stub)).inflate(); View operatorName = ((ViewStub) view.findViewById(R.id.operator_name_stub)).inflate(); operatorName.setVisibility(View.GONE); return operatorName; } /** */ Loading Loading
packages/SystemUI/res/values/dimens.xml +2 −2 Original line number Diff line number Diff line Loading @@ -174,7 +174,7 @@ <dimen name="status_bar_clock_size">14sp</dimen> <!-- The starting padding for the clock in the status bar. --> <dimen name="status_bar_clock_starting_padding">7dp</dimen> <dimen name="status_bar_clock_starting_padding">4dp</dimen> <!-- The end padding for the clock in the status bar. --> <dimen name="status_bar_clock_end_padding">0dp</dimen> Loading Loading @@ -395,7 +395,7 @@ <dimen name="status_bar_icon_horizontal_margin">0sp</dimen> <!-- the padding on the start of the statusbar --> <dimen name="status_bar_padding_start">8dp</dimen> <dimen name="status_bar_padding_start">4dp</dimen> <!-- the padding on the end of the statusbar --> <dimen name="status_bar_padding_end">4dp</dimen> Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/dagger/StatusBarFragmentModule.java +3 −1 Original line number Diff line number Diff line Loading @@ -91,7 +91,9 @@ public interface StatusBarFragmentModule { @StatusBarFragmentScope @Named(OPERATOR_NAME_VIEW) static View provideOperatorNameView(@RootView PhoneStatusBarView view) { return ((ViewStub) view.findViewById(R.id.operator_name_stub)).inflate(); View operatorName = ((ViewStub) view.findViewById(R.id.operator_name_stub)).inflate(); operatorName.setVisibility(View.GONE); return operatorName; } /** */ Loading