Searched refs:autofillType (Results 1 – 5 of 5) sorted by relevance
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/ |
D | FilledAutofillFieldCollection.kt | 62 val autofillType = autofillField.autofillType in <lambda>() constant 64 when (autofillType) { in <lambda>() 92 else -> Log.w(TAG, "Invalid autofill type - " + autofillType) in <lambda>()
|
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/ |
D | AbstractCustomVirtualView.java | 330 public Line addLine(String idEntryPrefix, int autofillType, String label, String text, in addLine() argument 332 Preconditions.checkArgument(autofillType == AUTOFILL_TYPE_TEXT in addLine() 333 || autofillType == AUTOFILL_TYPE_DATE, "Unsupported type: " + autofillType); in addLine() 334 Line line = new Line(idEntryPrefix, autofillType, label, autofillHints, text, in addLine() 372 private Line(String idEntryPrefix, int autofillType, String label, String[] hints, in Line() argument 374 this.mAutofillType = autofillType; in Line() 378 autofillType, text, true, sanitized); in Line()
|
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/ |
D | AutofillFieldMetadata.kt | 33 val autofillType: Int = view.autofillType constant
|
/developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/adapter/ |
D | DatasetAdapter.java | 149 int autofillType = viewNode.getAutofillType(); in bindValueToNode() local 150 switch (autofillType) { in bindValueToNode() 185 logw("Invalid autofill type - %d", autofillType); in bindValueToNode()
|
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/ |
D | README.md | 29 to specify autofill properties: `importantForAutofill`, `autofillHints`, and `autofillType`. 33 with the prefix AUTOFILL_HINT_*. `autofillType` tells the service the type of data it expects to 34 receive (i.e. a list index, a date, or a string). Specifying `autofillType` is only necessary
|