diff options
| author | 2020-02-08 20:48:19 +0000 | |
|---|---|---|
| committer | 2020-02-08 20:48:19 +0000 | |
| commit | 1ff2f074559cfe8b011078f65c78d214b6f8a3ef (patch) | |
| tree | f9759d585ec1c44167d5a97e92a1d2d01806be84 | |
| parent | 460ce85bbe5bf0a149dfa636d5f16c74f2a4f34a (diff) | |
| parent | e93d586c0fc51158753567450a8f61684a170c89 (diff) | |
Merge "Make suggestion chip non-focusable to remove the background shadow"
| -rw-r--r-- | services/autofill/java/com/android/server/autofill/ui/InlineSuggestionRoot.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/autofill/java/com/android/server/autofill/ui/InlineSuggestionRoot.java b/services/autofill/java/com/android/server/autofill/ui/InlineSuggestionRoot.java index 8d476d72c639..e813dae76d92 100644 --- a/services/autofill/java/com/android/server/autofill/ui/InlineSuggestionRoot.java +++ b/services/autofill/java/com/android/server/autofill/ui/InlineSuggestionRoot.java @@ -48,6 +48,7 @@ class InlineSuggestionRoot extends FrameLayout { super(context); mOnErrorCallback = onErrorCallback; mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); + setFocusable(false); } @Override |