Java Code Examples for android.view.autofill.AutofillValue#getListValue()
The following examples show how to use
android.view.autofill.AutofillValue#getListValue() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RadioGroup.java From android_9.0.0_r45 with Apache License 2.0 | 6 votes |
@Override public void autofill(AutofillValue value) { if (!isEnabled()) return; if (!value.isList()) { Log.w(LOG_TAG, value + " could not be autofilled into " + this); return; } final int index = value.getListValue(); final View child = getChildAt(index); if (child == null) { Log.w(VIEW_LOG_TAG, "RadioGroup.autoFill(): no child with index " + index); return; } check(child.getId()); }
Example 2
Source File: NestedConstraintRadioGroup.java From NestedRadioButton with Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.O) @Override public void autofill(AutofillValue value) { if (!isEnabled()) return; if (!value.isList()) { Log.w(LOG_TAG, value + " could not be autofilled into " + this); return; } final int index = value.getListValue(); final View child = getChildAt(index); if (child == null) { Log.w(VIEW_LOG_TAG, "RadioGroup.autoFill(): no child with index " + index); return; } nestedRadioGroupManager.check(child.getId()); }
Example 3
Source File: NestedRelativeRadioGroup.java From NestedRadioButton with Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.O) @Override public void autofill(AutofillValue value) { if (!isEnabled()) return; if (!value.isList()) { Log.w(LOG_TAG, value + " could not be autofilled into " + this); return; } final int index = value.getListValue(); final View child = getChildAt(index); if (child == null) { Log.w(VIEW_LOG_TAG, "RadioGroup.autoFill(): no child with index " + index); return; } nestedRadioGroupManager.check(child.getId()); }
Example 4
Source File: NestedLinearRadioGroup.java From NestedRadioButton with Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.O) @Override public void autofill(AutofillValue value) { if (!isEnabled()) return; if (!value.isList()) { Log.w(LOG_TAG, value + " could not be autofilled into " + this); return; } final int index = value.getListValue(); final View child = getChildAt(index); if (child == null) { Log.w(VIEW_LOG_TAG, "RadioGroup.autoFill(): no child with index " + index); return; } nestedRadioGroupManager.check(child.getId()); }
Example 5
Source File: NestedFrameRadioGroup.java From NestedRadioButton with Apache License 2.0 | 6 votes |
@TargetApi(Build.VERSION_CODES.O) @Override public void autofill(AutofillValue value) { if (!isEnabled()) return; if (!value.isList()) { Log.w(LOG_TAG, value + " could not be autofilled into " + this); return; } final int index = value.getListValue(); final View child = getChildAt(index); if (child == null) { Log.w(VIEW_LOG_TAG, "RadioGroup.autoFill(): no child with index " + index); return; } nestedRadioGroupManager.check(child.getId()); }
Example 6
Source File: ClientAutofillDataBuilder.java From input-samples with Apache License 2.0 | 5 votes |
private void parseAutofillFields(AssistStructure.ViewNode viewNode, DatasetWithFilledAutofillFields datasetWithFilledAutofillFields, int partition) { String[] hints = viewNode.getAutofillHints(); if (hints == null || hints.length == 0) { return; } AutofillValue autofillValue = viewNode.getAutofillValue(); String textValue = null; Long dateValue = null; Boolean toggleValue = null; CharSequence[] autofillOptions = null; Integer listIndex = null; if (autofillValue != null) { if (autofillValue.isText()) { // Using toString of AutofillValue.getTextValue in order to save it to // SharedPreferences. textValue = autofillValue.getTextValue().toString(); } else if (autofillValue.isDate()) { dateValue = autofillValue.getDateValue(); } else if (autofillValue.isList()) { autofillOptions = viewNode.getAutofillOptions(); listIndex = autofillValue.getListValue(); } else if (autofillValue.isToggle()) { toggleValue = autofillValue.getToggleValue(); } } appendViewMetadata(datasetWithFilledAutofillFields, hints, partition, textValue, dateValue, toggleValue, autofillOptions, listIndex); }
Example 7
Source File: ClientAutofillDataBuilder.java From android-AutofillFramework with Apache License 2.0 | 5 votes |
private void parseAutofillFields(AssistStructure.ViewNode viewNode, DatasetWithFilledAutofillFields datasetWithFilledAutofillFields, int partition) { String[] hints = viewNode.getAutofillHints(); if (hints == null || hints.length == 0) { return; } AutofillValue autofillValue = viewNode.getAutofillValue(); String textValue = null; Long dateValue = null; Boolean toggleValue = null; CharSequence[] autofillOptions = null; Integer listIndex = null; if (autofillValue != null) { if (autofillValue.isText()) { // Using toString of AutofillValue.getTextValue in order to save it to // SharedPreferences. textValue = autofillValue.getTextValue().toString(); } else if (autofillValue.isDate()) { dateValue = autofillValue.getDateValue(); } else if (autofillValue.isList()) { autofillOptions = viewNode.getAutofillOptions(); listIndex = autofillValue.getListValue(); } else if (autofillValue.isToggle()) { toggleValue = autofillValue.getToggleValue(); } } appendViewMetadata(datasetWithFilledAutofillFields, hints, partition, textValue, dateValue, toggleValue, autofillOptions, listIndex); }