ClickableText
Common
Component in Compose Foundation
A continent version of [BasicText] component to be able to handle click event on the text.
This is a shorthand of [BasicText] with [pointerInput] to be able to handle click event easily.
Last updated:
Installation
dependencies {
implementation("androidx.compose.foundation:foundation:1.8.0-alpha04")
}
Overloads
@Composable
@Deprecated(
"Use Text or BasicText and pass an AnnotatedString that contains a LinkAnnotation. " +
"Check LinkAnnotation's documentation for more details and samples."
)
fun ClickableText(
text: AnnotatedString,
modifier: Modifier = Modifier,
style: TextStyle = TextStyle.Default,
softWrap: Boolean = true,
overflow: TextOverflow = TextOverflow.Clip,
maxLines: Int = Int.MAX_VALUE,
onTextLayout: (TextLayoutResult) -> Unit = {},
onClick: (Int) -> Unit
)
Parameters
name | description |
---|---|
text | The text to be displayed. |
modifier | Modifier to apply to this layout node. |
style | Style configuration for the text such as color, font, line height etc. |
softWrap | Whether the text should break at soft line breaks. If false, the glyphs in the text will be positioned as if there was unlimited horizontal space. If [softWrap] is false, [overflow] and [TextAlign] may have unexpected effects. |
overflow | How visual overflow should be handled. |
maxLines | An optional maximum number of lines for the text to span, wrapping if necessary. If the text exceeds the given number of lines, it will be truncated according to [overflow] and [softWrap]. If it is not null, then it must be greater than zero. |
onTextLayout | Callback that is executed when a new text layout is calculated. A [TextLayoutResult] object that callback provides contains paragraph information, size of the text, baselines and other details. The callback can be used to add additional decoration or functionality to the text. For example, to draw selection around the text. |
onClick | Callback that is executed when users click the text. This callback is called with clicked character's offset.Note: this composable is now deprecated. Instead, use regular [androidx.compose.material3.Text]or [androidx.compose.foundation.text.BasicText] and pass an AnnotatedString that contains a[androidx.compose.ui.text.LinkAnnotation]. |
Code Examples
ClickableText
@Composable
@Suppress("Deprecation")
fun ClickableText() {
ClickableText(
text = AnnotatedString("Click Me"),
onClick = { offset -> Log.d("ClickableText", "$offset -th character is clicked.") }
)
}
LongClickableText
@Composable
fun LongClickableText(
text: AnnotatedString,
modifier: Modifier = Modifier,
style: TextStyle = TextStyle.Default,
softWrap: Boolean = false,
overflow: TextOverflow = TextOverflow.Clip,
maxLines: Int = Int.MAX_VALUE,
onTextLayout: (TextLayoutResult) -> Unit = {},
onLongClick: (offset: Int) -> Unit
) {
val layoutResult = remember { mutableStateOf<TextLayoutResult?>(null) }
val gesture =
Modifier.pointerInput(onLongClick) {
detectTapGestures(
onLongPress = { pos ->
layoutResult.value?.let { layout ->
onLongClick(layout.getOffsetForPosition(pos))
}
}
)
}
Text(
text = text,
modifier = modifier.then(gesture),
style = style,
softWrap = softWrap,
overflow = overflow,
maxLines = maxLines,
onTextLayout = {
onTextLayout(it)
layoutResult.value = it
}
)
}