diff options
| -rw-r--r-- | packages/SystemUI/res-keyguard/layout/status_bar_mobile_signal_group_inner.xml | 10 | ||||
| -rw-r--r-- | packages/SystemUI/res/values/dimens.xml | 16 |
2 files changed, 18 insertions, 8 deletions
diff --git a/packages/SystemUI/res-keyguard/layout/status_bar_mobile_signal_group_inner.xml b/packages/SystemUI/res-keyguard/layout/status_bar_mobile_signal_group_inner.xml index 8f1323db299d..a1e2dc36278b 100644 --- a/packages/SystemUI/res-keyguard/layout/status_bar_mobile_signal_group_inner.xml +++ b/packages/SystemUI/res-keyguard/layout/status_bar_mobile_signal_group_inner.xml @@ -54,7 +54,7 @@ </FrameLayout> <ImageView android:id="@+id/mobile_type" - android:layout_height="@dimen/status_bar_mobile_signal_size" + android:layout_height="@dimen/status_bar_mobile_type_size" android:layout_width="wrap_content" android:layout_gravity="center_vertical" android:adjustViewBounds="true" @@ -74,13 +74,15 @@ <com.android.systemui.statusbar.AnimatedImageView android:id="@+id/mobile_signal" android:layout_height="@dimen/status_bar_mobile_signal_size" - android:layout_width="@dimen/status_bar_mobile_signal_size" + android:layout_width="wrap_content" + android:adjustViewBounds="true" systemui:hasOverlappingRendering="false" /> <ImageView android:id="@+id/mobile_roaming" - android:layout_width="@dimen/status_bar_mobile_signal_size" - android:layout_height="@dimen/status_bar_mobile_signal_size" + android:layout_width="wrap_content" + android:layout_height="@dimen/status_bar_mobile_roam_size" + android:adjustViewBounds="true" android:layout_gravity="top|start" android:src="@drawable/stat_sys_roaming" android:contentDescription="@string/data_connection_roaming" diff --git a/packages/SystemUI/res/values/dimens.xml b/packages/SystemUI/res/values/dimens.xml index 3d4e8cd567f5..8f63b1270e73 100644 --- a/packages/SystemUI/res/values/dimens.xml +++ b/packages/SystemUI/res/values/dimens.xml @@ -165,13 +165,21 @@ <!-- Size of the view displaying the wifi inout icon in the status bar. --> <dimen name="status_bar_wifi_inout_container_size">17sp</dimen> - <!-- Size of the view displaying the wifi signal icon in the status bar. --> - <dimen name="status_bar_wifi_signal_size">13sp</dimen> + <!-- Size of the view displaying the wifi signal icon in the status bar. This value should + match the core/status_bar_system_icon_size and change to sp unit --> + <dimen name="status_bar_wifi_signal_size">15sp</dimen> <!-- Size of the view displaying the mobile inout icon in the status bar. --> <dimen name="status_bar_mobile_inout_container_size">17sp</dimen> - <!-- Size of the view displaying the mobile signal icon in the status bar. --> - <dimen name="status_bar_mobile_signal_size">13sp</dimen> + <!-- Size of the view displaying the mobile signal icon in the status bar. This value should + match the core/status_bar_system_icon_size and change to sp unit --> + <dimen name="status_bar_mobile_signal_size">15sp</dimen> + <!-- Size of the view displaying the mobile signal icon in the status bar. This value should + match the viewport height of mobile signal drawables such as ic_lte_mobiledata --> + <dimen name="status_bar_mobile_type_size">16sp</dimen> + <!-- Size of the view displaying the mobile roam icon in the status bar. This value should + match the viewport size of drawable stat_sys_roaming --> + <dimen name="status_bar_mobile_roam_size">8sp</dimen> <!-- Spacing before the airplane mode icon if there are any icons preceding it. --> <dimen name="status_bar_airplane_spacer_width">4sp</dimen> |