Questions tagged [android-autofill-manager]

The AutofillManager provides ways for apps and custom views to integrate with the Autofill Framework lifecycle.

59 questions
1
vote
1 answer

Password manager autofill

how to make an autofill app like dashlane, or lastpass on android studio. I want to make an autofill app, example facebook, It can autofill my login credentials on facebook. I want my password manager can autofill on different websites.
1
vote
0 answers

Don't show android native autofill save dialog if credentials already there in password manager

I am seeing android autofill native save password dialog again and again even credentials are same. how to avoid it? Show autofill native save password dialog only if credentials are different Use Case:- lets say I had save username- dummy@b.m and…
1
vote
1 answer

Android Autofill Phone Number not appearing, only showing 'Passwords'

I am trying to utilize the Android's Autofill feature in an EditText field to give the user the suggestion of using the phone number associated with their device/account at the top of the keyboard as shown in images below. I tried to add…
Eric
  • 425
  • 1
  • 5
  • 14
1
vote
1 answer

Android How can I detect autofill pressed?

I use AutofillManager https://developer.android.com/reference/android/view/autofill/AutofillManager and can't understand how can I detect is user enter value himself or user select any autofill option. I try to use editText.autofillValue but it…
1
vote
0 answers

Using autofill framework how can i save user details that I can show as hint when user login again

I am trying to save user phone, email, password, update password using android autofill framework. I am using different fragments for all the above values. I tried to forcefully save values using autofillframework commit method, but that doesn't…
Rohit Sharma
  • 69
  • 1
  • 5
1
vote
0 answers

Autofill in Android Oreo not working when app handles localization

I can't seem to make the Autofill to show for an application that handles its own localization. For some reason, if attachBaseContext is modified to configure localized resources, the Autofill simply won't work: However, if the activity just has…
Alvin Rusli
  • 1,026
  • 1
  • 11
  • 19
1
vote
2 answers

Google smart lock showing all my phone accounts in an app instead the ones previously used

I'm developing an app and 've implemented smart lock. The problem is that at first, having several google accounts in my phone, when I press login, a smart lock modal appears saying.. Continue with.. And then a list of all my accounts appear (even…
TrOnNe
  • 1,632
  • 16
  • 30
1
vote
2 answers

Restrict/remove autofill option on long press of Edit text

I have an edit text and on long press on it i dont want autofill option to be included along side copy ,paste ,select etc I tried doing the below code which in turn didn't help me if (Build.VERSION.SDK_INT >= 26) { AutofillManager…
1
vote
1 answer

Allow to disable Oreo Autofill service for a package

I am developer of a password manager app which provides an Android Autofill service (Android 8+). Some users requested that it should be possible to disable this service on a per-target-app basis. In the autofill service's onFillRequest I am adding…
Philipp
  • 11,549
  • 8
  • 66
  • 126
1
vote
1 answer

Trigger Autofill Service in login page of Chrome Browser

I can able to get the Autofill Service event in facebook app's login page for OREO and above OS versions. @Override public void onFillRequest(@NonNull FillRequest request, @NonNull CancellationSignal cancellationSignal, @NonNull FillCallback…
1
vote
2 answers

How to get the user to auto fill framework setting screen pro-grammatically in android 8.0

I want to get the user to auto-fill framework settings screen to enable the AutoFill framework to auto-fill the login form in third-party apps. So, how can I get the user programmatically to the auto-fill settings screen in Oreo devices?
0
votes
0 answers

How to stop dialog save password to Google on Android 14?

Since Android 8 to 13, when you want to disable Password Manager's saving password we only need to include this: android:importantForAutofill="no" But it seems something changed in Android 14 and that autofield exclusion doesn't work. I also tried…
0
votes
0 answers

android, kotlin - How to create an Autofill Service?

I'm trying to create password manager autofilling login and password. Basing on Build autofill services I'm trying to begin with basic-level functionalities of app(providing autofill data inputs to other apps). I still have difficulities…
Adam
  • 1
  • 1
0
votes
0 answers

Request remote API in AutofillService Android application

I intend to build a password manager application that has the autofill functionality. From the documentation, I can store the encrypted credentials in the Android key store and then decrypt it to populate to…
0
votes
0 answers

How to create an Autofill Provider Service using native Android and integrate it into a flutter application?

I am having a flutter mobile application, and I need to implement an Autofill Provider Service, so it works as a password manager. Flutter is not providing any tool yet to implement this feature, so i need to implement it using native Android…
Zohra
  • 49
  • 1
  • 7