For setting clickable links within text, we need t...
# compose
c
For setting clickable links within text, we need to use AnnotatedString with ClickableText. However, I've noticed that the ClickableText consumes the pointer events even if the tap doesn't correspond to a clickable region of text, and thus a tap anywhere on the text doesn't fall-through to its parent. Is there any way to make only the clickable regions of text consume the pointer events?
For example, I've got a Card, and the whole thing is clickable. But within the card I've got ClickableText, and I only want specific text links within that to be intercepted. Clicks on other portions of that text should trigger the Card's
onClick
. Since the Card is mostly filled with this text, and may not even have links in it, it's difficult to actually trigger the card's onClick with the snippet used in the official docs
t
Yeah, I had an idea a while back to hoist out the span positions and handle clicks in a layer on top of the text, but I never completed it. I think what we really need is a way to flow Composables in text, but that's a tall order with the Android text layout code.
c
Yeah, that would be nice. You can add inline composables to the AnnotatedString, but you need to hardcode the size it should take up in the string. It looks like the issue is mainly with
PointerInputScope.detectTapGestures
not offering a way to return a boolean from the
onTap
callback to say whether a given event was actually handled.