Merge "Provide support for optimized ACTION_REQUEST_SET_AUTOFILL_SERVICE." into oc-dev

am: 62bb027d12

Change-Id: If9e223a9cc7585568eb86995f0d0ef458d2c658c
This commit is contained in:
Felipe Leme
2017-04-26 23:54:31 +00:00
committed by android-build-merger
4 changed files with 3 additions and 31 deletions

View File

@@ -1159,7 +1159,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
public static final int IMPORTANT_FOR_AUTOFILL_YES = 0x1;
/**
* The view is not important for autofill, and its children (if any) will be traversed.
* The view is not important for autofill, but its children (if any) will be traversed.
*/
public static final int IMPORTANT_FOR_AUTOFILL_NO = 0x2;

View File

@@ -1081,7 +1081,8 @@ public final class AutofillManager {
return view;
}
private boolean hasAutofillFeature() {
/** @hide */
public boolean hasAutofillFeature() {
return mService != null;
}