diff options
author | Shaleen Jain <shaleen.jain95@gmail.com> | 2016-03-04 15:07:35 +0530 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-03-07 15:55:33 -0800 |
commit | f04180a1273c4b88be51eaa2df3623ce65bf1571 (patch) | |
tree | bb8e0b20ee0d7d7822cbb42a33f54bcb74b590e1 /packages/SystemUI/res/layout | |
parent | 063b5f30bf46c731c3b913f2b791ab2254a002fd (diff) | |
download | frameworks_base-f04180a1273c4b88be51eaa2df3623ce65bf1571.zip frameworks_base-f04180a1273c4b88be51eaa2df3623ce65bf1571.tar.gz frameworks_base-f04180a1273c4b88be51eaa2df3623ce65bf1571.tar.bz2 |
SystemUI: fix always_show_roaming
The roaming indicator overlaps with the signal view
fix it to match the cm-12.1 layout and tint it as well
RM-208
Change-Id: I3b070b867fbf070cdf20cf01eb67c8e4688ac881
Diffstat (limited to 'packages/SystemUI/res/layout')
-rw-r--r-- | packages/SystemUI/res/layout/mobile_signal_group.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/res/layout/mobile_signal_group.xml b/packages/SystemUI/res/layout/mobile_signal_group.xml index 0756e0a..abdbaf7 100644 --- a/packages/SystemUI/res/layout/mobile_signal_group.xml +++ b/packages/SystemUI/res/layout/mobile_signal_group.xml @@ -17,13 +17,13 @@ ** limitations under the License. */ --> -<FrameLayout +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:systemui="http://schemas.android.com/apk/res-auto" android:id="@+id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" - > + android:orientation="horizontal"> <FrameLayout android:layout_height="wrap_content" android:layout_width="wrap_content" @@ -57,4 +57,4 @@ android:visibility="gone" android:src="@drawable/stat_sys_data_roaming" /> -</FrameLayout> +</LinearLayout> |