我想要这样的东西:
• Hey this is my first paragraph.• Hey this is my second paragraph. And this is the second line.• Hey this is my third paragraph.
• Hey this is my first paragraph.
• Hey this is my second paragraph.
And this is the second line.
• Hey this is my third paragraph.
字符串
snvhrwxg1#
在头脑 Storm 时发现的。只是另一种带注解的字符串方法,只有一个文本。
val bullet = "\u2022" val messages = listOf( "Hey This is first paragraph", "Hey this is my second paragraph. Any this is 2nd line.", "Hey this is 3rd paragraph." ) val paragraphStyle = ParagraphStyle(textIndent = TextIndent(restLine = 12.sp)) Text( buildAnnotatedString { messages.forEach { withStyle(style = paragraphStyle) { append(bullet) append("\t\t") append(it) } } } )
val bullet = "\u2022"
val messages = listOf(
"Hey This is first paragraph",
"Hey this is my second paragraph. Any this is 2nd line.",
"Hey this is 3rd paragraph."
)
val paragraphStyle = ParagraphStyle(textIndent = TextIndent(restLine = 12.sp))
Text(
buildAnnotatedString {
messages.forEach {
withStyle(style = paragraphStyle) {
append(bullet)
append("\t\t")
append(it)
}
字符串更新:输出的屏幕截图
vaj7vani2#
不知道能否达到预期,请尝试
@Preview(showBackground = true)@Composablefun TestList() { val list = listOf( "Hey This is first paragraph", "Hey this is my second paragraph. Any this is 2nd line.", "Hey this is 3rd paragraph." ) LazyColumn { items(list) { Row(Modifier.padding(8.dp),verticalAlignment = Alignment.CenterVertically) { Canvas(modifier = Modifier.padding(start = 8.dp,end = 8.dp).size(6.dp)){ drawCircle(Color.Black) } Text(text = it,fontSize = 12.sp) } } }}
@Preview(showBackground = true)
@Composable
fun TestList() {
val list = listOf(
LazyColumn {
items(list) {
Row(Modifier.padding(8.dp),verticalAlignment = Alignment.CenterVertically) {
Canvas(modifier = Modifier.padding(start = 8.dp,end = 8.dp).size(6.dp)){
drawCircle(Color.Black)
Text(text = it,fontSize = 12.sp)
ars1skjm3#
只是 * 组成 * 这种组件
@Composablefun BulletList( modifier: Modifier = Modifier, style: TextStyle, indent: Dp = 20.dp, lineSpacing: Dp = 0.dp, items: List<String>,) { Column(modifier = modifier) { items.forEach { Row { Text( text = "\u2022", style = style.copy(textAlign = TextAlign.Center), modifier = Modifier.width(indent), ) Text( text = it, style = style, modifier = Modifier.weight(1f, fill = true), ) } if (lineSpacing > 0.dp && it != items.last()) { Spacer(modifier = Modifier.height(lineSpacing)) } } }}
fun BulletList(
modifier: Modifier = Modifier,
style: TextStyle,
indent: Dp = 20.dp,
lineSpacing: Dp = 0.dp,
items: List<String>,
) {
Column(modifier = modifier) {
items.forEach {
Row {
text = "\u2022",
style = style.copy(textAlign = TextAlign.Center),
modifier = Modifier.width(indent),
text = it,
style = style,
modifier = Modifier.weight(1f, fill = true),
if (lineSpacing > 0.dp && it != items.last()) {
Spacer(modifier = Modifier.height(lineSpacing))
字符串使用
BulletList( items = listOf( "First bullet", "Second bullet ... which is awfully long but that's not a problem", "Third bullet ", ), modifier = Modifier.padding(24.dp), style = MyTheme.typography.body1, lineSpacing = 8.dp,)
BulletList(
items = listOf(
"First bullet",
"Second bullet ... which is awfully long but that's not a problem",
"Third bullet ",
),
modifier = Modifier.padding(24.dp),
style = MyTheme.typography.body1,
lineSpacing = 8.dp,
型Result
92vpleto4#
这个答案是基于accepted answer的。我希望它不是多余的。我认为它通过测量两个标签的大小来修复了关于硬编码restLine大小的问题。我们还使它更通用。
restLine
@Composablefun makeBulletedList(items: List<String>): AnnotatedString { val bulletString = "\u2022\t\t" val textStyle = LocalTextStyle.current val textMeasurer = rememberTextMeasurer() val bulletStringWidth = remember(textStyle, textMeasurer) { textMeasurer.measure(text = bulletString, style = textStyle).size.width } val restLine = with(LocalDensity.current) { bulletStringWidth.toSp() } val paragraphStyle = ParagraphStyle(textIndent = TextIndent(restLine = restLine)) return buildAnnotatedString { items.forEach { text -> withStyle(style = paragraphStyle) { append(bulletString) append(text) } } }}
fun makeBulletedList(items: List<String>): AnnotatedString {
val bulletString = "\u2022\t\t"
val textStyle = LocalTextStyle.current
val textMeasurer = rememberTextMeasurer()
val bulletStringWidth = remember(textStyle, textMeasurer) {
textMeasurer.measure(text = bulletString, style = textStyle).size.width
val restLine = with(LocalDensity.current) { bulletStringWidth.toSp() }
val paragraphStyle = ParagraphStyle(textIndent = TextIndent(restLine = restLine))
return buildAnnotatedString {
items.forEach { text ->
append(bulletString)
append(text)
字符串你可以像这样使用这个函数:
items = listOf( "First item", "Second item is too long to fit in one line, but that's not a problem", "Third item",)Text(text = makeBulletedList(items))
"First item",
"Second item is too long to fit in one line, but that's not a problem",
"Third item",
Text(text = makeBulletedList(items))
型
zaq34kh65#
使用带项目符号装饰的文本的最佳方法:
Text( text = "• Hey this is my first paragraph.", style = MaterialTheme.typography.body1.copy( textDecoration = TextDecoration.Companion.Underline.Companion.Bullet ) ) Text( text = "• Hey this is my second paragraph.\nAnd this is the second line.", style = MaterialTheme.typography.body1.copy( textDecoration = TextDecoration.Companion.Underline.Companion.Bullet ) ) Text( text = "• Hey this is my third paragraph.", style = MaterialTheme.typography.body1.copy( textDecoration = TextDecoration.Companion.Underline.Companion.Bullet ) )
text = "• Hey this is my first paragraph.",
style = MaterialTheme.typography.body1.copy(
textDecoration = TextDecoration.Companion.Underline.Companion.Bullet
text = "• Hey this is my second paragraph.\nAnd this is the second line.",
text = "• Hey this is my third paragraph.",
kninwzqo6#
BulletText.kt:
package com.inidamleader.ovtracker.util.composeimport androidx.compose.foundation.layout.paddingimport androidx.compose.foundation.text.InlineTextContentimport androidx.compose.material3.LocalTextStyleimport androidx.compose.material3.MaterialThemeimport androidx.compose.material3.Surfaceimport androidx.compose.material3.Textimport androidx.compose.runtime.Composableimport androidx.compose.runtime.rememberimport androidx.compose.ui.Modifierimport androidx.compose.ui.graphics.Colorimport androidx.compose.ui.text.TextLayoutResultimport androidx.compose.ui.text.TextStyleimport androidx.compose.ui.text.rememberTextMeasurerimport androidx.compose.ui.text.style.TextOverflowimport androidx.compose.ui.tooling.preview.Previewimport androidx.compose.ui.unit.dpimport com.inidamleader.ovtracker.layer.ui.theme.OvTrackerTheme@Composablefun BulletText( text: String, modifier: Modifier = Modifier, bullet: String = "\u2022\u00A0\u00A0", highlightedText: String = "", highlightedTextColor: Color = MaterialTheme.colorScheme.primaryContainer, overflow: TextOverflow = TextOverflow.Clip, softWrap: Boolean = true, maxLines: Int = Int.MAX_VALUE, minLines: Int = 1, inlineContent: Map<String, InlineTextContent> = mapOf(), onTextLayout: (TextLayoutResult) -> Unit = {}, style: TextStyle = LocalTextStyle.current,) { val restLine = run { val textMeasurer = rememberTextMeasurer() val bulletStringWidth = remember(bullet, style, textMeasurer) { textMeasurer.measure(text = bullet, style = style).size.width } bulletStringWidth.toSp() } Text( text = remember(text, bullet, restLine, highlightedText, highlightedTextColor) { text.bulletWithHighlightedTxtAnnotatedString( bullet = bullet, restLine = restLine, highlightedTxt = highlightedText, highlightedTxtColor = highlightedTextColor, ) }, overflow = overflow, softWrap = softWrap, maxLines = maxLines, minLines = minLines, inlineContent = inlineContent, onTextLayout = onTextLayout, style = style, modifier = modifier, )}@Preview@Composablefun PreviewBulletText() { OvTrackerTheme { Surface { BulletText( text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit." + "\nEtiam lipsums et metus vel mauris scelerisque molestie eget nec ligula." + "\nNulla scelerisque, magna id aliquam rhoncus, ipsumx turpis risus sodales mi, sit ipsum amet malesuada nibh lacus sit amet libero." + "\nCras in sem euismod, vulputate ligula in, egestas enim ipsum.", modifier = Modifier.padding(8.dp), highlightedText = "ipsum", overflow = TextOverflow.Ellipsis, onTextLayout = {}, ) } }}
package com.inidamleader.ovtracker.util.compose
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.text.InlineTextContent
import androidx.compose.material3.LocalTextStyle
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Surface
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.TextLayoutResult
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.rememberTextMeasurer
import androidx.compose.ui.text.style.TextOverflow
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.inidamleader.ovtracker.layer.ui.theme.OvTrackerTheme
fun BulletText(
text: String,
bullet: String = "\u2022\u00A0\u00A0",
highlightedText: String = "",
highlightedTextColor: Color = MaterialTheme.colorScheme.primaryContainer,
overflow: TextOverflow = TextOverflow.Clip,
softWrap: Boolean = true,
maxLines: Int = Int.MAX_VALUE,
minLines: Int = 1,
inlineContent: Map<String, InlineTextContent> = mapOf(),
onTextLayout: (TextLayoutResult) -> Unit = {},
style: TextStyle = LocalTextStyle.current,
val restLine = run {
val bulletStringWidth = remember(bullet, style, textMeasurer) {
textMeasurer.measure(text = bullet, style = style).size.width
bulletStringWidth.toSp()
text = remember(text, bullet, restLine, highlightedText, highlightedTextColor) {
text.bulletWithHighlightedTxtAnnotatedString(
bullet = bullet,
restLine = restLine,
highlightedTxt = highlightedText,
highlightedTxtColor = highlightedTextColor,
},
overflow = overflow,
softWrap = softWrap,
maxLines = maxLines,
minLines = minLines,
inlineContent = inlineContent,
onTextLayout = onTextLayout,
modifier = modifier,
@Preview
fun PreviewBulletText() {
OvTrackerTheme {
Surface {
BulletText(
text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit." +
"\nEtiam lipsums et metus vel mauris scelerisque molestie eget nec ligula." +
"\nNulla scelerisque, magna id aliquam rhoncus, ipsumx turpis risus sodales mi, sit ipsum amet malesuada nibh lacus sit amet libero." +
"\nCras in sem euismod, vulputate ligula in, egestas enim ipsum.",
modifier = Modifier.padding(8.dp),
highlightedText = "ipsum",
overflow = TextOverflow.Ellipsis,
onTextLayout = {},
字符串StringExt.kt:
package com.inidamleader.ovtracker.util.composeimport androidx.compose.ui.graphics.Colorimport androidx.compose.ui.text.ParagraphStyleimport androidx.compose.ui.text.SpanStyleimport androidx.compose.ui.text.buildAnnotatedStringimport androidx.compose.ui.text.style.TextIndentimport androidx.compose.ui.text.withStyleimport androidx.compose.ui.unit.TextUnitfun String.bulletWithHighlightedTxtAnnotatedString( bullet: String, restLine: TextUnit, highlightedTxt: String, highlightedTxtColor: Color,) = buildAnnotatedString { split("\n").forEach { val row = it.trim() if (row.isNotBlank()) { withStyle(style = ParagraphStyle(textIndent = TextIndent(restLine = restLine))) { append(bullet) val split = row.split(highlightedTxt) split.forEachIndexed { index, txt -> append(txt) if (index != split.lastIndex) withStyle(style = SpanStyle(background = highlightedTxtColor)) { append(highlightedTxt) } } } } }}
import androidx.compose.ui.text.ParagraphStyle
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.buildAnnotatedString
import androidx.compose.ui.text.style.TextIndent
import androidx.compose.ui.text.withStyle
import androidx.compose.ui.unit.TextUnit
fun String.bulletWithHighlightedTxtAnnotatedString(
bullet: String,
restLine: TextUnit,
highlightedTxt: String,
highlightedTxtColor: Color,
) = buildAnnotatedString {
split("\n").forEach {
val row = it.trim()
if (row.isNotBlank()) {
withStyle(style = ParagraphStyle(textIndent = TextIndent(restLine = restLine))) {
val split = row.split(highlightedTxt)
split.forEachIndexed { index, txt ->
append(txt)
if (index != split.lastIndex)
withStyle(style = SpanStyle(background = highlightedTxtColor)) {
append(highlightedTxt)
型电话分机号码:
package com.inidamleader.ovtracker.util.composeimport androidx.compose.runtime.Composableimport androidx.compose.ui.platform.LocalDensity@Composablefun Number.toDp() = with(LocalDensity.current) { toFloat().toDp()}@Composablefun Number.toSp() = with(LocalDensity.current) { toFloat().toSp()}
import androidx.compose.ui.platform.LocalDensity
fun Number.toDp() = with(LocalDensity.current) {
toFloat().toDp()
fun Number.toSp() = with(LocalDensity.current) {
toFloat().toSp()
的数据
6条答案
按热度按时间snvhrwxg1#
在头脑 Storm 时发现的。只是另一种带注解的字符串方法,只有一个文本。
字符串

更新:输出
的屏幕截图
vaj7vani2#
不知道能否达到预期,请尝试
字符串
ars1skjm3#
只是 * 组成 * 这种组件
字符串
使用
型
Result
92vpleto4#
这个答案是基于accepted answer的。我希望它不是多余的。我认为它通过测量两个标签的大小来修复了关于硬编码
restLine
大小的问题。我们还使它更通用。字符串
你可以像这样使用这个函数:
型
zaq34kh65#
使用带项目符号装饰的文本的最佳方法:
字符串
kninwzqo6#
BulletText.kt:
字符串
StringExt.kt:
型
电话分机号码:
型
的数据