diff options
| author | 2021-04-26 17:33:36 -0400 | |
|---|---|---|
| committer | 2021-04-27 09:38:12 -0400 | |
| commit | 53eeccae00e267eb61cb30afa91a96006c7c819f (patch) | |
| tree | 32fd1b3410ac17d1af79ebb9cdeef8667749a05c | |
| parent | 39f3d9bb082e486563bee6c1d1c431bfa292d0c8 (diff) | |
Fix initial visibility of RemoteInputView causing bad padding below actions.
Fixes: 186453431
Test: visual, manual
Change-Id: I246fbb5abeb4abba899449605dde9ee47d2b6fc5
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentView.java b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentView.java index 884ad8d5cee4..fe4ea28b1ed0 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/NotificationContentView.java @@ -1258,7 +1258,7 @@ public class NotificationContentView extends FrameLayout { RemoteInputView riv = RemoteInputView.inflate( mContext, actionContainer, entry, mRemoteInputController); - riv.setVisibility(View.INVISIBLE); + riv.setVisibility(View.GONE); actionContainer.addView(riv, new LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT) |