显示文本
使用收藏整理内容 根据您的偏好保存和分类内容。
显示文本最基本的方法是使用带有 String
作为参数的 Text
可组合函数
@Composable
fun SimpleText() {
Text("Hello World")
}
从资源显示文本
我们建议您使用 字符串资源 而不是硬编码 Text
值,因为您可以与 Android 视图共享相同的字符串,并为您的应用做好国际化准备
@Composable
fun StringResourceText() {
Text(stringResource(R.string.hello_world))
}
为您推荐
本页面上的内容和代码示例受 内容许可 中描述的许可证约束。Java 和 OpenJDK 是 Oracle 和/或其关联公司的商标或注册商标。
上次更新时间:2024-09-05 UTC。
[{ "type": "thumb-down", "id": "missingTheInformationINeed", "label":"缺少我需要的信息" },{ "type": "thumb-down", "id": "tooComplicatedTooManySteps", "label":"过于复杂/步骤过多" },{ "type": "thumb-down", "id": "outOfDate", "label":"已过时" },{ "type": "thumb-down", "id": "samplesCodeIssue", "label":"示例/代码问题" },{ "type": "thumb-down", "id": "otherDown", "label":"其他" }]
[{ "type": "thumb-up", "id": "easyToUnderstand", "label":"易于理解" },{ "type": "thumb-up", "id": "solvedMyProblem", "label":"解决了我的问题" },{ "type": "thumb-up", "id": "otherUp", "label":"其他" }]
{ "lastModified": "上次更新时间:2024-09-05 UTC.", "confidential": False }