diff options
| author | Philip P. Moltmann <moltmann@google.com> | 2017-03-10 16:45:02 -0800 |
|---|---|---|
| committer | Philip P. Moltmann <moltmann@google.com> | 2017-03-13 13:42:51 -0700 |
| commit | 495cadd8a99d52965a22ffd83c2abe0930cb0968 (patch) | |
| tree | daf7821b9d4b6aa969f16549990bd3f7629b0305 /core/java/android/view/ViewStructure.java | |
| parent | 41eae9115c9fffb513abce5e872bb03f2fa433f1 (diff) | |
Change autoFillHint to list of strings
Test: Ran autofill CTS tests
Fixes: 35364993
Change-Id: I3f4ceb719b2d3fef0168e8300c0d15f1661560c0
Diffstat (limited to 'core/java/android/view/ViewStructure.java')
| -rw-r--r-- | core/java/android/view/ViewStructure.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/view/ViewStructure.java b/core/java/android/view/ViewStructure.java index bccaca2c8baa..5eac708a9aeb 100644 --- a/core/java/android/view/ViewStructure.java +++ b/core/java/android/view/ViewStructure.java @@ -16,6 +16,7 @@ package android.view; +import android.annotation.Nullable; import android.graphics.Matrix; import android.graphics.Rect; import android.os.Bundle; @@ -323,7 +324,7 @@ public abstract class ViewStructure { * Sets the a hint that helps the autofill service to select the appropriate data to fill the * view. */ - public abstract void setAutofillHint(@View.AutofillHint int hint); + public abstract void setAutofillHint(@Nullable String[] hint); /** * Sets the {@link AutofillValue} representing the current value of this node. |
