Home
last modified time | relevance | path

Searched refs:findViewByAutofillHint (Results 1 – 2 of 2) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/activities/
DFatActivity.java19 import static android.autofillservice.cts.testcore.Helper.findViewByAutofillHint;
125 mViewWithAutofillHints = (MyView) findViewByAutofillHint(this, "importantAmI"); in onCreate()
/cts/tests/autofillservice/src/android/autofillservice/cts/testcore/
DHelper.java488 public static View findViewByAutofillHint(Activity activity, String hint) { in findViewByAutofillHint() method in Helper
490 return findViewByAutofillHint(rootView, hint); in findViewByAutofillHint()
497 public static View findViewByAutofillHint(View view, String hint) { in findViewByAutofillHint() method in Helper
502 final View child = findViewByAutofillHint(group.getChildAt(i), hint); in findViewByAutofillHint()