diff options
author | Utkarsh Gupta <utkarsh.eminem@gmail.com> | 2015-08-18 12:27:39 +0530 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2015-12-16 15:40:50 -0800 |
commit | 19e458f4a26fe7c8b6419cadba81a0c46dc79dad (patch) | |
tree | 92b6807c477a3661869a2eb7b2b312e310729bcc /packages/SystemUI/res | |
parent | 1d87c14008301f5488c1ebece0345eef2afe2cf1 (diff) | |
download | frameworks_base-19e458f4a26fe7c8b6419cadba81a0c46dc79dad.zip frameworks_base-19e458f4a26fe7c8b6419cadba81a0c46dc79dad.tar.gz frameworks_base-19e458f4a26fe7c8b6419cadba81a0c46dc79dad.tar.bz2 |
SystemUI: use new visualizer from Eleven
Change-Id: I4441440868cac71caa32c91a0875f00a630fe596
Signed-off-by: Utkarsh Gupta <utkarsh.eminem@gmail.com>
Signed-off-by: Roman Birg <roman@cyngn.com>
Diffstat (limited to 'packages/SystemUI/res')
-rw-r--r-- | packages/SystemUI/res/layout/super_status_bar.xml | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/packages/SystemUI/res/layout/super_status_bar.xml b/packages/SystemUI/res/layout/super_status_bar.xml index 7ef4db1..896efde 100644 --- a/packages/SystemUI/res/layout/super_status_bar.xml +++ b/packages/SystemUI/res/layout/super_status_bar.xml @@ -45,19 +45,29 @@ android:visibility="invisible" /> </com.android.systemui.statusbar.BackDropView> - <com.android.systemui.statusbar.ScrimView android:id="@+id/scrim_behind" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:importantForAccessibility="no" - sysui:ignoreRightInset="true" - /> - - <com.android.systemui.statusbar.AlphaOptimizedView - android:id="@+id/heads_up_scrim" - android:layout_width="match_parent" - android:layout_height="@dimen/heads_up_scrim_height" - android:background="@drawable/heads_up_scrim" - android:importantForAccessibility="no"/> + <FrameLayout android:id="@+id/scrimview" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:visibility="visible"> + <com.android.systemui.statusbar.ScrimView + android:id="@+id/scrim_behind" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:importantForAccessibility="no"/> + <com.android.systemui.statusbar.AlphaOptimizedView + android:id="@+id/heads_up_scrim" + android:layout_width="match_parent" + android:layout_height="@dimen/heads_up_scrim_height" + android:background="@drawable/heads_up_scrim" + android:importantForAccessibility="no"/> + <com.android.systemui.statusbar.VisualizerView + android:id="@+id/visualizerview" + android:gravity="bottom" + android:layout_gravity="bottom" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:visibility="visible"/> + </FrameLayout> <include layout="@layout/status_bar" android:layout_width="match_parent" |