diff options
author | Jorim Jaggi <jjaggi@google.com> | 2014-11-17 19:14:04 +0100 |
---|---|---|
committer | Jorim Jaggi <jjaggi@google.com> | 2014-11-19 16:52:43 +0100 |
commit | 4e857f4ef0357e05806819d0488a73a12208fe8f (patch) | |
tree | 70dcb8e48cd765ec22b4b2e2a46ab265a9c214f4 /core/res | |
parent | 1ca6af34b48b18b8c4b5e2cdf3f1bd4295d8ac2e (diff) | |
download | frameworks_base-4e857f4ef0357e05806819d0488a73a12208fe8f.zip frameworks_base-4e857f4ef0357e05806819d0488a73a12208fe8f.tar.gz frameworks_base-4e857f4ef0357e05806819d0488a73a12208fe8f.tar.bz2 |
Fade notifications when exiting dozing
Bug: 18146441
Change-Id: Ifa0cbb8157c65768c3a0c584166ca88c3016b730
Diffstat (limited to 'core/res')
5 files changed, 5 insertions, 0 deletions
diff --git a/core/res/res/layout/notification_template_material_base.xml b/core/res/res/layout/notification_template_material_base.xml index 674d7b8..3fdcaf7 100644 --- a/core/res/res/layout/notification_template_material_base.xml +++ b/core/res/res/layout/notification_template_material_base.xml @@ -28,6 +28,7 @@ android:layout_height="@dimen/notification_large_icon_height" /> <LinearLayout + android:id="@+id/notification_main_column" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="top" diff --git a/core/res/res/layout/notification_template_material_big_base.xml b/core/res/res/layout/notification_template_material_big_base.xml index ef916ed..935424a 100644 --- a/core/res/res/layout/notification_template_material_big_base.xml +++ b/core/res/res/layout/notification_template_material_big_base.xml @@ -28,6 +28,7 @@ android:layout_height="@dimen/notification_large_icon_height" /> <LinearLayout + android:id="@+id/notification_main_column" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="top" diff --git a/core/res/res/layout/notification_template_material_big_text.xml b/core/res/res/layout/notification_template_material_big_text.xml index 3415814..d0c10b2 100644 --- a/core/res/res/layout/notification_template_material_big_text.xml +++ b/core/res/res/layout/notification_template_material_big_text.xml @@ -28,6 +28,7 @@ android:layout_height="@dimen/notification_large_icon_height" /> <LinearLayout + android:id="@+id/notification_main_column" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="top" diff --git a/core/res/res/layout/notification_template_material_inbox.xml b/core/res/res/layout/notification_template_material_inbox.xml index 8a66c3f..ac448ee 100644 --- a/core/res/res/layout/notification_template_material_inbox.xml +++ b/core/res/res/layout/notification_template_material_inbox.xml @@ -28,6 +28,7 @@ android:layout_height="@dimen/notification_large_icon_height" /> <LinearLayout + android:id="@+id/notification_main_column" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="top" diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 702d5ed..5be0e6e 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -202,6 +202,7 @@ <java-symbol type="id" name="status_bar_latest_event_content" /> <java-symbol type="id" name="action_divider" /> <java-symbol type="id" name="overflow_divider" /> + <java-symbol type="id" name="notification_main_column" /> <java-symbol type="id" name="sms_short_code_confirm_message" /> <java-symbol type="id" name="sms_short_code_detail_layout" /> <java-symbol type="id" name="sms_short_code_detail_message" /> |