Lines Matching refs:child
18 involved, but the use of custom views and views with virtual child views requires more work.
45 virtual children, meaning some autofillable child views are not known to the View hierarchy to be
46 child views. Supporting autofill on these child views is a little more involved.
68 virtual child views. The following code example shows the `View` method you have to override in
79 // Traverse through the view hierarchy, including virtual child views. For each view, we
83 ViewStructure child = structure.newChild(index);
84 child.setAutofillId(structure, item.id);
85 child.setAutofillHints(item.hints);
86 child.setAutofillType(item.type);
87 child.setDataIsSensitive(!item.sanitized);
88 child.setText(item.text);
89 child.setAutofillValue(AutofillValue.forText(item.text));
90 child.setFocused(item.focused);
91 child.setId(item.id, getContext().getPackageName(), null, item.line.idEntry);
92 child.setClassName(item.getClassName());
104 to deliver a UI update to the appropriate child view after the user makes their selection.