对于以XML声明的视图,我们可以使用SpannableStringBuilder
(如这里提到的https://stackoverflow.com/a/4897412/9715339)为部分字符串着色。
但使用JetPack composetext
时,我无法仅使用单个text
实现相同的功能。
我想要这样的东西。
因为你可以看到只有“注册”的文本有不同的颜色,而且我想使它可以点击。
这就是我的文本代码现在的样子
Text(text = "Don't have an account? Sign Up",
modifier = Modifier.align(Alignment.BottomCenter),
style = MaterialTheme.typography.h6,
color = MaterialTheme.colors.secondary,
)
这在喷气机组合中是可能的吗?
因此,借助@commonsware的注释和本文档https://developer.android.com/jetpack/compose/text#click-with-annotation
我使用AnnotatedString
&ClickableText
创建了相同的代码。注释内联添加,供任何人理解。
@Composable
fun AnnotatedClickableText() {
val annotatedText = buildAnnotatedString {
//append your initial text
withStyle(
style = SpanStyle(
color = Color.Gray,
)
) {
append("Don't have an account? ")
}
//Start of the pushing annotation which you want to color and make them clickable later
pushStringAnnotation(
tag = "SignUp",// provide tag which will then be provided when you click the text
annotation = "SignUp"
)
//add text with your different color/style
withStyle(
style = SpanStyle(
color = Color.Red,
)
) {
append("Sign Up")
}
// when pop is called it means the end of annotation with current tag
pop()
}
ClickableText(
text = annotatedText,
onClick = { offset ->
annotatedText.getStringAnnotations(
tag = "SignUp",// tag which you used in the buildAnnotatedString
start = offset,
end = offset
)[0].let { annotation ->
//do your stuff when it gets clicked
Log.d("Clicked", annotation.item)
}
}
)
}
当条件(if)满足时,我尝试将文本着色为绿色或红色。 这是我的函数getAll() 在我的表格中,有一部分我想给文本上色。下面的例子不起作用。 我也试过,但它总是在绿色或红色上着色。 我想做这样的事情:如果有一天,然后颜色文本的红色或绿色。
问题内容: 我想为文本区域中的特定行设置颜色。到目前为止,我发现的是以下内容 但这是行不通的。我究竟做错了什么? 编辑:好的,我一直在尝试,我尝试使用 添加文本,而不是添加文本,然后重新样式,但无济于事。 问题答案: 我不确定JTextArea是否可以设置太多详细的样式,因为它可能是根据所选字体,颜色等为整个文档设置样式的。使用JTextPane / JEditorPane可能会有更多的运气。 编
有没有一种方法可以用W3 web技术(例如SVG、canvas)来实现这一点?
问题内容: 有人可以告诉我使用Selenium Ide从文本中仅提取数字(694575)并将其放入变量中以便进一步使用的命令。这是带有文本的div: 在这种情况下,可能像storeText,storeEval这样的命令应该可以使用,但是带有粘贴的部分对我来说是个谜。 问题答案: 我有解决办法,棘手的1 试试这个1,让我知道它是否对您有用
所以,我正在尝试制作一个.html文件,在这里我可以选择任何类型的文件,比如.txt或.html或.py,并将所述文件的内容放入html页面上的文本区中。我该怎么做呢?我不知道从哪里开始。
我谷歌过,但它们太复杂了。我设置的状态栏状态在App代表: 但是没有工作。谢谢