Görünen metin
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Metni görüntülemenin en temel yolu, Text
composable'ı String
ile birlikte bağımsız değişken olarak kullanmaktır:
@Composable
fun SimpleText() {
Text("Hello World")
}
Kaynaktaki metni gösterme
Text
değerlerini sabit kodlamak yerine dize kaynaklarını kullanmanızı öneririz. Böylece, aynı dizeleri Android görünümlerinizle paylaşabilir ve uygulamanızı uluslararası kullanıma hazırlayabilirsiniz:
@Composable
fun StringResourceText() {
Text(stringResource(R.string.hello_world))
}
Sizin için önerilenler
Bu sayfadaki içerik ve kod örnekleri, İçerik Lisansı sayfasında açıklanan lisanslara tabidir. Java ve OpenJDK, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-08-31 UTC.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-08-31 UTC."],[],[],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/f95ab59fad80aeaf5d6a90bab8a01a126f20f44e/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/f95ab59fad80aeaf5d6a90bab8a01a126f20f44e/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)"]]