如何在Android Jetpack Compose中创建项目符号文本列表?

yrwegjxp  于 2024-01-04  发布在  Android
关注(0)|答案(6)|浏览(176)

我想要这样的东西:

  1. Hey this is my first paragraph.
  2. Hey this is my second paragraph.
  3. And this is the second line.
  4. Hey this is my third paragraph.

字符串

snvhrwxg

snvhrwxg1#

在头脑 Storm 时发现的。只是另一种带注解的字符串方法,只有一个文本。

  1. val bullet = "\u2022"
  2. val messages = listOf(
  3. "Hey This is first paragraph",
  4. "Hey this is my second paragraph. Any this is 2nd line.",
  5. "Hey this is 3rd paragraph."
  6. )
  7. val paragraphStyle = ParagraphStyle(textIndent = TextIndent(restLine = 12.sp))
  8. Text(
  9. buildAnnotatedString {
  10. messages.forEach {
  11. withStyle(style = paragraphStyle) {
  12. append(bullet)
  13. append("\t\t")
  14. append(it)
  15. }
  16. }
  17. }
  18. )

字符串
更新:输出

的屏幕截图

展开查看全部
vaj7vani

vaj7vani2#

不知道能否达到预期,请尝试

  1. @Preview(showBackground = true)
  2. @Composable
  3. fun TestList() {
  4. val list = listOf(
  5. "Hey This is first paragraph",
  6. "Hey this is my second paragraph. Any this is 2nd line.",
  7. "Hey this is 3rd paragraph."
  8. )
  9. LazyColumn {
  10. items(list) {
  11. Row(Modifier.padding(8.dp),verticalAlignment = Alignment.CenterVertically) {
  12. Canvas(modifier = Modifier.padding(start = 8.dp,end = 8.dp).size(6.dp)){
  13. drawCircle(Color.Black)
  14. }
  15. Text(text = it,fontSize = 12.sp)
  16. }
  17. }
  18. }
  19. }

字符串

展开查看全部
ars1skjm

ars1skjm3#

只是 * 组成 * 这种组件

  1. @Composable
  2. fun BulletList(
  3. modifier: Modifier = Modifier,
  4. style: TextStyle,
  5. indent: Dp = 20.dp,
  6. lineSpacing: Dp = 0.dp,
  7. items: List<String>,
  8. ) {
  9. Column(modifier = modifier) {
  10. items.forEach {
  11. Row {
  12. Text(
  13. text = "\u2022",
  14. style = style.copy(textAlign = TextAlign.Center),
  15. modifier = Modifier.width(indent),
  16. )
  17. Text(
  18. text = it,
  19. style = style,
  20. modifier = Modifier.weight(1f, fill = true),
  21. )
  22. }
  23. if (lineSpacing > 0.dp && it != items.last()) {
  24. Spacer(modifier = Modifier.height(lineSpacing))
  25. }
  26. }
  27. }
  28. }

字符串
使用

  1. BulletList(
  2. items = listOf(
  3. "First bullet",
  4. "Second bullet ... which is awfully long but that's not a problem",
  5. "Third bullet ",
  6. ),
  7. modifier = Modifier.padding(24.dp),
  8. style = MyTheme.typography.body1,
  9. lineSpacing = 8.dp,
  10. )


Result

展开查看全部
92vpleto

92vpleto4#

这个答案是基于accepted answer的。我希望它不是多余的。我认为它通过测量两个标签的大小来修复了关于硬编码restLine大小的问题。我们还使它更通用。

  1. @Composable
  2. fun makeBulletedList(items: List<String>): AnnotatedString {
  3. val bulletString = "\u2022\t\t"
  4. val textStyle = LocalTextStyle.current
  5. val textMeasurer = rememberTextMeasurer()
  6. val bulletStringWidth = remember(textStyle, textMeasurer) {
  7. textMeasurer.measure(text = bulletString, style = textStyle).size.width
  8. }
  9. val restLine = with(LocalDensity.current) { bulletStringWidth.toSp() }
  10. val paragraphStyle = ParagraphStyle(textIndent = TextIndent(restLine = restLine))
  11. return buildAnnotatedString {
  12. items.forEach { text ->
  13. withStyle(style = paragraphStyle) {
  14. append(bulletString)
  15. append(text)
  16. }
  17. }
  18. }
  19. }

字符串
你可以像这样使用这个函数:

  1. items = listOf(
  2. "First item",
  3. "Second item is too long to fit in one line, but that's not a problem",
  4. "Third item",
  5. )
  6. Text(text = makeBulletedList(items))

展开查看全部
zaq34kh6

zaq34kh65#

使用带项目符号装饰的文本的最佳方法:

  1. Text(
  2. text = "• Hey this is my first paragraph.",
  3. style = MaterialTheme.typography.body1.copy(
  4. textDecoration = TextDecoration.Companion.Underline.Companion.Bullet
  5. )
  6. )
  7. Text(
  8. text = "• Hey this is my second paragraph.\nAnd this is the second line.",
  9. style = MaterialTheme.typography.body1.copy(
  10. textDecoration = TextDecoration.Companion.Underline.Companion.Bullet
  11. )
  12. )
  13. Text(
  14. text = "• Hey this is my third paragraph.",
  15. style = MaterialTheme.typography.body1.copy(
  16. textDecoration = TextDecoration.Companion.Underline.Companion.Bullet
  17. )
  18. )

字符串

展开查看全部
kninwzqo

kninwzqo6#

BulletText.kt:

  1. package com.inidamleader.ovtracker.util.compose
  2. import androidx.compose.foundation.layout.padding
  3. import androidx.compose.foundation.text.InlineTextContent
  4. import androidx.compose.material3.LocalTextStyle
  5. import androidx.compose.material3.MaterialTheme
  6. import androidx.compose.material3.Surface
  7. import androidx.compose.material3.Text
  8. import androidx.compose.runtime.Composable
  9. import androidx.compose.runtime.remember
  10. import androidx.compose.ui.Modifier
  11. import androidx.compose.ui.graphics.Color
  12. import androidx.compose.ui.text.TextLayoutResult
  13. import androidx.compose.ui.text.TextStyle
  14. import androidx.compose.ui.text.rememberTextMeasurer
  15. import androidx.compose.ui.text.style.TextOverflow
  16. import androidx.compose.ui.tooling.preview.Preview
  17. import androidx.compose.ui.unit.dp
  18. import com.inidamleader.ovtracker.layer.ui.theme.OvTrackerTheme
  19. @Composable
  20. fun BulletText(
  21. text: String,
  22. modifier: Modifier = Modifier,
  23. bullet: String = "\u2022\u00A0\u00A0",
  24. highlightedText: String = "",
  25. highlightedTextColor: Color = MaterialTheme.colorScheme.primaryContainer,
  26. overflow: TextOverflow = TextOverflow.Clip,
  27. softWrap: Boolean = true,
  28. maxLines: Int = Int.MAX_VALUE,
  29. minLines: Int = 1,
  30. inlineContent: Map<String, InlineTextContent> = mapOf(),
  31. onTextLayout: (TextLayoutResult) -> Unit = {},
  32. style: TextStyle = LocalTextStyle.current,
  33. ) {
  34. val restLine = run {
  35. val textMeasurer = rememberTextMeasurer()
  36. val bulletStringWidth = remember(bullet, style, textMeasurer) {
  37. textMeasurer.measure(text = bullet, style = style).size.width
  38. }
  39. bulletStringWidth.toSp()
  40. }
  41. Text(
  42. text = remember(text, bullet, restLine, highlightedText, highlightedTextColor) {
  43. text.bulletWithHighlightedTxtAnnotatedString(
  44. bullet = bullet,
  45. restLine = restLine,
  46. highlightedTxt = highlightedText,
  47. highlightedTxtColor = highlightedTextColor,
  48. )
  49. },
  50. overflow = overflow,
  51. softWrap = softWrap,
  52. maxLines = maxLines,
  53. minLines = minLines,
  54. inlineContent = inlineContent,
  55. onTextLayout = onTextLayout,
  56. style = style,
  57. modifier = modifier,
  58. )
  59. }
  60. @Preview
  61. @Composable
  62. fun PreviewBulletText() {
  63. OvTrackerTheme {
  64. Surface {
  65. BulletText(
  66. text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit." +
  67. "\nEtiam lipsums et metus vel mauris scelerisque molestie eget nec ligula." +
  68. "\nNulla scelerisque, magna id aliquam rhoncus, ipsumx turpis risus sodales mi, sit ipsum amet malesuada nibh lacus sit amet libero." +
  69. "\nCras in sem euismod, vulputate ligula in, egestas enim ipsum.",
  70. modifier = Modifier.padding(8.dp),
  71. highlightedText = "ipsum",
  72. overflow = TextOverflow.Ellipsis,
  73. onTextLayout = {},
  74. )
  75. }
  76. }
  77. }

字符串
StringExt.kt:

  1. package com.inidamleader.ovtracker.util.compose
  2. import androidx.compose.ui.graphics.Color
  3. import androidx.compose.ui.text.ParagraphStyle
  4. import androidx.compose.ui.text.SpanStyle
  5. import androidx.compose.ui.text.buildAnnotatedString
  6. import androidx.compose.ui.text.style.TextIndent
  7. import androidx.compose.ui.text.withStyle
  8. import androidx.compose.ui.unit.TextUnit
  9. fun String.bulletWithHighlightedTxtAnnotatedString(
  10. bullet: String,
  11. restLine: TextUnit,
  12. highlightedTxt: String,
  13. highlightedTxtColor: Color,
  14. ) = buildAnnotatedString {
  15. split("\n").forEach {
  16. val row = it.trim()
  17. if (row.isNotBlank()) {
  18. withStyle(style = ParagraphStyle(textIndent = TextIndent(restLine = restLine))) {
  19. append(bullet)
  20. val split = row.split(highlightedTxt)
  21. split.forEachIndexed { index, txt ->
  22. append(txt)
  23. if (index != split.lastIndex)
  24. withStyle(style = SpanStyle(background = highlightedTxtColor)) {
  25. append(highlightedTxt)
  26. }
  27. }
  28. }
  29. }
  30. }
  31. }


电话分机号码:

  1. package com.inidamleader.ovtracker.util.compose
  2. import androidx.compose.runtime.Composable
  3. import androidx.compose.ui.platform.LocalDensity
  4. @Composable
  5. fun Number.toDp() = with(LocalDensity.current) {
  6. toFloat().toDp()
  7. }
  8. @Composable
  9. fun Number.toSp() = with(LocalDensity.current) {
  10. toFloat().toSp()
  11. }


的数据

展开查看全部

相关问题