diff options
author | Adnan Begovic <adnan@cyngn.com> | 2016-01-11 14:39:20 -0800 |
---|---|---|
committer | Adnan Begovic <adnan@cyngn.com> | 2016-01-12 12:39:53 -0800 |
commit | fe976b7e721000f04b442a908cac60a614dd166c (patch) | |
tree | 96a3e10c8a49e293e222710d29a52c786be0c835 /packages/SystemUI/res/layout | |
parent | df5e2309224c58632843a1687d8c257459451859 (diff) | |
download | frameworks_base-fe976b7e721000f04b442a908cac60a614dd166c.zip frameworks_base-fe976b7e721000f04b442a908cac60a614dd166c.tar.gz frameworks_base-fe976b7e721000f04b442a908cac60a614dd166c.tar.bz2 |
SystemUi: Reintroduce always_show_roaming config.
Set ro.config.always_show_roaming to true to always
show both the current data RAT and roaming when in
a roaming scenario.
Change-Id: I59416f172f24094547b2594347e6accab0bd7fed
TICKET: CYNGNOS-1578
Diffstat (limited to 'packages/SystemUI/res/layout')
-rw-r--r-- | packages/SystemUI/res/layout/mobile_signal_group.xml | 52 |
1 files changed, 33 insertions, 19 deletions
diff --git a/packages/SystemUI/res/layout/mobile_signal_group.xml b/packages/SystemUI/res/layout/mobile_signal_group.xml index 6ae5cf3..f163b9b 100644 --- a/packages/SystemUI/res/layout/mobile_signal_group.xml +++ b/packages/SystemUI/res/layout/mobile_signal_group.xml @@ -24,24 +24,38 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" > - <com.android.systemui.statusbar.AnimatedImageView - android:theme="@style/DualToneLightTheme" - android:id="@+id/mobile_signal" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - systemui:hasOverlappingRendering="false" - /> - <com.android.systemui.statusbar.AnimatedImageView - android:theme="@style/DualToneDarkTheme" - android:id="@+id/mobile_signal_dark" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:alpha="0.0" - systemui:hasOverlappingRendering="false" - /> + <FrameLayout + android:paddingStart="3dp" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + > + <com.android.systemui.statusbar.AnimatedImageView + android:theme="@style/DualToneLightTheme" + android:id="@+id/mobile_signal" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + systemui:hasOverlappingRendering="false" + /> + <com.android.systemui.statusbar.AnimatedImageView + android:theme="@style/DualToneDarkTheme" + android:id="@+id/mobile_signal_dark" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:alpha="0.0" + systemui:hasOverlappingRendering="false" + /> + <ImageView + android:id="@+id/mobile_type" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + /> + </FrameLayout> + <ImageView - android:id="@+id/mobile_type" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - /> + android:id="@+id/mobile_roaming" + android:layout_height="wrap_content" + android:layout_width="wrap_content" + android:visibility="gone" + android:src="@drawable/stat_sys_data_roaming" + /> </FrameLayout> |