I'm in the process of trying to understand the Android framework of auto-filling.
Of course, autofilling from my app into a browser, like Chrome.
I've found this page on Android Developers website, titled: Autofill Framework.
On this page, the Optimizing of the 2 EditText views are username and password.
It seems to suggest that the EditText view needs to have this property (?) set:
android:autofillHints=username
android:autofillHints=password
There's some Java code on this page that suggests setting the property like so:
I would assume using the JavaObject library in B4A for the above.
But this whole thing eeks of knowing Eclipse and Java, which I do not.
Can someone enlighten me on this and or do you already have a java library that handles all this?
Thank you kindly,
Mark Stuart
Of course, autofilling from my app into a browser, like Chrome.
I've found this page on Android Developers website, titled: Autofill Framework.
On this page, the Optimizing of the 2 EditText views are username and password.
It seems to suggest that the EditText view needs to have this property (?) set:
android:autofillHints=username
android:autofillHints=password
There's some Java code on this page that suggests setting the property like so:
Java:
EditText password = findViewById(R.id.password);
password.setAutofillHints(View.AUTOFILL_HINT_PASSWORD);
But this whole thing eeks of knowing Eclipse and Java, which I do not.
Can someone enlighten me on this and or do you already have a java library that handles all this?
Thank you kindly,
Mark Stuart