显示文本
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
显示文字的最基本方法是使用以 String
作为参数的 Text
可组合项:
@Composable
fun SimpleText() {
Text("Hello World")
}
显示资源中的文字
我们建议您使用字符串资源,而不是对 Text
值进行硬编码,因为使用字符串资源时您可以与 Android 视图共享相同的字符串,并为您的应用国际化做好准备:
@Composable
fun StringResourceText() {
Text(stringResource(R.string.hello_world))
}
为您推荐
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-09-03。
[null,null,["最后更新时间 (UTC):2025-09-03。"],[],[],null,["The most basic way to display text is to use the `Text` composable with a\n`String` as an argument:\n\n\n```kotlin\n@Composable\nfun SimpleText() {\n Text(\"Hello World\")\n}https://github.com/android/snippets/blob/30ed522851a9273c94afcd3a4c30bf674346ad18/compose/snippets/src/main/java/com/example/compose/snippets/text/TextSnippets.kt#L107-L110\n```\n\n\u003cbr /\u003e\n\nDisplay text from resource\n\nWe recommend you use [string resources](/develop/ui/compose/resources#strings)\ninstead of hardcoding `Text` values, as you can share the same strings with your\nAndroid Views as well as preparing your app for internationalization:\n\n\n```kotlin\n@Composable\nfun StringResourceText() {\n Text(stringResource(R.string.hello_world))\n}https://github.com/android/snippets/blob/30ed522851a9273c94afcd3a4c30bf674346ad18/compose/snippets/src/main/java/com/example/compose/snippets/text/TextSnippets.kt#L116-L119\n```\n\n\u003cbr /\u003e\n\nRecommended for you\n\n- Note: link text is displayed when JavaScript is off\n- [Enable user interactions](/develop/ui/compose/text/user-interactions)\n- [Thinking in Compose](/develop/ui/compose/mental-model)\n- [Display emoji](/develop/ui/compose/text/emoji)"]]