blob: c857fbd984cfaf9902b5902800b865865517bc44 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.android.autofillframework.multidatasetservice;
import android.app.assist.AssistStructure.ViewNode;
import android.view.autofill.AutofillId;
import static com.example.android.autofillframework.multidatasetservice.AutofillHints.convertToStoredHintNames;
import static com.example.android.autofillframework.multidatasetservice.AutofillHints.filterForSupportedHints;
/**
* A stripped down version of a {@link ViewNode} that contains only autofill-relevant metadata. It
* also contains a {@code mSaveType} flag that is calculated based on the {@link ViewNode}]'s
* autofill hints.
*/
public class AutofillFieldMetadata {
private int mSaveType = 0;
private String[] mAutofillHints;
private AutofillId mAutofillId;
private int mAutofillType;
private CharSequence[] mAutofillOptions;
private boolean mFocused;
public AutofillFieldMetadata(ViewNode view) {
mAutofillId = view.getAutofillId();
mAutofillType = view.getAutofillType();
mAutofillOptions = view.getAutofillOptions();
mFocused = view.isFocused();
String[] hints = filterForSupportedHints(view.getAutofillHints());
convertToStoredHintNames(hints);
setHints(hints);
}
public String[] getHints() {
return mAutofillHints;
}
public void setHints(String[] hints) {
mAutofillHints = hints;
mSaveType = AutofillHints.getSaveTypeForHints(hints);
}
public int getSaveType() {
return mSaveType;
}
public AutofillId getId() {
return mAutofillId;
}
public int getAutofillType() {
return mAutofillType;
}
/**
* When the {@link ViewNode} is a list that the user needs to choose a string from (i.e. a
* spinner), this is called to return the index of a specific item in the list.
*/
public int getAutofillOptionIndex(String value) {
for (int i = 0; i < mAutofillOptions.length; i++) {
if (mAutofillOptions[i].toString().equals(value)) {
return i;
}
}
return -1;
}
public boolean isFocused() {
return mFocused;
}
}