Apply notification action list bg color to actions container

The @color/notification_action_list_background_color, which is @null in
vanilla android, should be applied to the actions_container_layout so
that the bubble_gone_padding_end, which is also a part of the container,
is also included in the background. Without this, that padding is not
included in the colored background.

Bug: 168637667
Test: build, test color overlay on ARC++.
Change-Id: I23306a130e543593c52231fe8dbc896cbe2874b8
This commit is contained in:
Prabir Pradhan
2020-10-27 13:58:04 -07:00
parent 5b93018b5c
commit 2ded45fdbd

View File

@@ -28,6 +28,7 @@
android:gravity="end"
android:orientation="horizontal"
android:paddingEnd="@dimen/bubble_gone_padding_end"
android:background="@color/notification_action_list_background_color"
>
<com.android.internal.widget.NotificationActionListLayout
@@ -38,7 +39,6 @@
android:orientation="horizontal"
android:gravity="center_vertical"
android:visibility="gone"
android:background="@color/notification_action_list_background_color"
>
<!-- actions will be added here -->
</com.android.internal.widget.NotificationActionListLayout>