summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2017-04-07 16:03:29 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-04-07 16:03:33 +0000
commit67ee79e84fa14975721ab9500aabf593c05dbcfe (patch)
treebf1a812407fea2f0056dae4e627906565e6be917
parent5393a0e2d99f323759d7abc56577e1d3004b51d0 (diff)
parent0bcaa27ceb1a0e3e32b7ce194d41d32637d1d5a6 (diff)
Merge "AOD: More VisD updates" into oc-dev
-rw-r--r--core/res/res/layout/notification_template_material_ambient.xml1
-rw-r--r--packages/SystemUI/src/com/android/keyguard/KeyguardStatusView.java2
2 files changed, 2 insertions, 1 deletions
diff --git a/core/res/res/layout/notification_template_material_ambient.xml b/core/res/res/layout/notification_template_material_ambient.xml
index 026bc6e5cb43..74f0e57c709b 100644
--- a/core/res/res/layout/notification_template_material_ambient.xml
+++ b/core/res/res/layout/notification_template_material_ambient.xml
@@ -33,6 +33,7 @@
android:layout_gravity="top"
android:layout_marginTop="@dimen/notification_content_margin_top"
android:layout_marginBottom="@dimen/notification_action_list_height"
+ android:paddingTop="10dp"
android:clipToPadding="false"
android:orientation="vertical">
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardStatusView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardStatusView.java
index 80b4da8e2acf..b2b0ee463a97 100644
--- a/packages/SystemUI/src/com/android/keyguard/KeyguardStatusView.java
+++ b/packages/SystemUI/src/com/android/keyguard/KeyguardStatusView.java
@@ -301,7 +301,7 @@ public class KeyguardStatusView extends GridLayout {
private void updateDozeVisibleViews() {
for (View child : mVisibleInDoze) {
- child.setAlpha(mDark && mPulsing ? 0.5f : 1);
+ child.setAlpha(mDark && mPulsing ? 0.8f : 1);
}
}
}