Verified
Status Update
Comments
no...@google.com <no...@google.com>
mo...@google.com <mo...@google.com>
ap...@google.com <ap...@google.com> #2
We have some support in androidx.compose.ui.autofill
Leaving this bug open in case Ralston wants to add more info
ap...@google.com <ap...@google.com> #3
I found an example
D/Autofill Status: Autofill popup isn't shown because autofill is not available.
Did you set up autofill?
1. Go to Settings > System > Languages&input > Advanced > Autofill Service
2. Pick a service
Did you add an account?
1. Go to Settings > System > Languages&input > Advanced
2. Click on the settings icon next to the Autofill Service
3. Add your account
Is this a bug on your side or do the app developers of these password managers need to change their implementation?
Description
Description:
Android MotionEvents reports the pressure being applied to the screen by a finger, stylus or other pointer device.
There appears to be no way to get touch pressure in Jetpack Compose without resorting to
pointerInteropFilter
, which the documentation recommends we don't use and which in any case appears to break when inside a LazyItem scope. (pointerInteropFilter
gets very janky, and drops around 90 per cent of events when in something like a LazyColumn.)It would be nice if
androidx.compose.ui.input.pointer
orandroidx.compose.ui.input.pointer.pointerevent
(or indeed anywhere you liked!) contained pressure properties or methods.Use Case:
Any Jetpack Compose drawing or handwriting app could make use of touch pressure. I imagine games could also benefit from it?