Status Update
Comments
mg...@google.com <mg...@google.com>
ap...@google.com <ap...@google.com> #2
Yoinking from triage
ap...@google.com <ap...@google.com> #3
Thanks for taking the time to file this issue!
Would you be able to provide more details about the scene and this error? I tried the following code:
@Preview
@Composable
fun AutofillTextField3() {
var password by remember { mutableStateOf("") }
val focusRequester = remember { FocusRequester() }
LaunchedEffect(Unit) {
focusRequester.requestFocus()
}
Column(Modifier.fillMaxWidth()) {
Text("Enter password")
TextField(
value = password,
onValueChange = { password = it },
modifier = Modifier
.fillMaxWidth()
.focusRequester(focusRequester)
.semantics { contentType = ContentType.Password },
label = { Text("password") },
placeholder = { Text("type your password here") }
)
}
}
but upon the app starting, Autofill displayed the suggestion chips along the keyboard for me. Verified that this is the case for BTF
as well.
Were you specifically using the Password
content type? The only way I was able to reproduce this was if the same code above instead had ContentType.NewUsername
set. In that case, you’re right—when the app starts, no suggestions are displayed. Only long-pressing and triggering autofill from the textbar menu displays the suggestions. I believe that is working as intended (as that is a field marked for new users and thus should not display previously saved data).
Are there any other details in the sample above that are missing?
ap...@google.com <ap...@google.com> #4
I think what I need to add to clarify is that the password fails to autocomplete when it's on another screen than the username field is. That seems to be the culprit.
I created a minimal example project which demonstrates this and also captured a video of the app running. From it you can see that the autofill chips appear briefly when navigating to the password screen. However, they disappear a moment after when the focus is requested.
Let me know if I can help providing any other information.
ap...@google.com <ap...@google.com> #5
Ah, I see what you're saying — thanks for the video and code! It seems like there’s two parts to this.
You mean that in a multi-page login, you would expect after selecting a credential chip, Autofill should fill in not only the first “username” on the first screen, but also “password” on the next screen. I believe this is working as intended. On the Compose side, it looks like we’re properly calling the autofill APIs. Looping in Kate from the autofill team to check: Kate, I double checked this with FormGen, and there’s the same behavior
The second part is that even if the password field is not immediately filled, the chips disappear after a second of being displayed. Unfortunately I was not able to reproduce this even running the sample code locally ― but I do notice that clicking the displayed chips on the password page does not autofill. Only after clicking autofill
in the text toolbar does selecting the chip actually invoke autofill. If the focusRequester
is removed from the code, then autofill works fine.
Seems like Compose is still properly sending the requested information over and calling the right APIs. I see that in both instances (in the working version without focusRequester
plus the one without it), Compose is calling notifyViewEntered
for the password screen, and then populateViewStructure
is called. But tapping onto the chip in the version with focusRequester
does not trigger autofill
(whereas it does without focusRequester
). I glanced over the semantic properties we send, and they look identical between both text fields.
I’m attaching some logs for the working version
ap...@google.com <ap...@google.com> #6
Correct, without focusRequester, tapping into the input field correctly populates the suggestion chips. With the focusRequester in place however, autofill chips appear but are immediately removed as shown on the video (probably due to the requested focus).
Thanks for looking into this.
ap...@google.com <ap...@google.com> #7
Triage: this P1 is nearly out of SLO.
ap...@google.com <ap...@google.com> #8
Thanks
ap...@google.com <ap...@google.com> #9
Project: platform/frameworks/support
Branch: androidx-main
Author: Melba Nuzen <
Link:
Only trigger commit
when no autofillable components onscreen
Expand for full commit details
Only trigger `commit` when no autofillable components onscreen
Fixes: 392539099
Test: `autofillManager_doNotCallCommit_partialRemoval` and others
Autocommit will only be invoked when there are no autofillable components currently displayed and when there were previously autofillable components onscreen. This prevents overeagerly calling `commit` in scenarios such as multipage logins. If developers need a session to be committed, they can still explicitly call `autofillManager.commit()` where needed.
Change-Id: Ic9ed6f9951163da3c39f31a771435eca14a8859a
Files:
- M
compose/ui/ui/integration-tests/ui-demos/src/main/java/androidx/compose/ui/demos/UiDemos.kt
- A
compose/ui/ui/integration-tests/ui-demos/src/main/java/androidx/compose/ui/demos/autofill/MultiPageLoginDemo.kt
- M
compose/ui/ui/src/androidInstrumentedTest/kotlin/androidx/compose/ui/autofill/AndroidAutofillManagerTest.kt
- M
compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/autofill/AndroidAutofillManager.android.kt
- M
compose/ui/ui/src/androidMain/kotlin/androidx/compose/ui/autofill/AutofillUtils.android.kt
Hash: df2e791d1f2e01554961745cbb5cfcfb23b699a9
Date: Mon Feb 24 10:12:52 2025
Description