Is there a roadmap for Android Compose autofill support? I just implemented an autofill service in a fully compose project and had to build an XML
RemoteViews
component for supporting overlay suggestions. This felt a bit jank.
I also built a test app with Compose and found there is no way to specify field types in the
AutofillNode
. The autofill service supports
View.AUTOFILL_TYPE_DATE
,
View.AUTOFILL_TYPE_TEXT
,
View.AUTOFILL_TYPE_TOGGLE
, and
View.AUTOFILL_TYPE_LIST
types. So I am interested to know what will happen with that delta.