본문 바로가기
개발/Android

[Android] EditText 에서 autofillHints 라는 애트리뷰트

by 언제나초심. 2019. 2. 21.
반응형

EditText 에서


autofillHints 라는 애트리뷰트 가 생긴 듯 하다.


https://developer.android.com/reference/android/view/View#attr_android:autofillHints


스마트폰에서 자동으로 값을 가져와서 넣는 것으로 보여진다. 


username, password, email address, credit card number 와 같은 값들인 듯 하다.


https://stackoverflow.com/questions/52690296/missing-autofillhints-attribute


API 26 이상에서 이용이 되고, 그 이하 버전에서는 문제를 일으킬 수 있는 듯 하다.


아래와 같은 값을 추가함. 

android:importantForAutofill="no"

tools:targetApi="o"

반응형