Your First Kotlin Android App: Polishing the App

Jul 14 2022 · Kotlin 1.6, Android 12, Android Studio Bumblebee | 2021.1.1

Part 2: Style the App

12. Style Text

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 11. Apply Styles & Themes Next episode: 13. Style Buttons

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

You worked mainly with themes in the last episode. It’s time to create and assign styles for the TextViews in the bullseye app. Let’s do that now.

<style name="game_stats_text">
    <item name="android:textSize">20sp</item>
</style>
style="@style/game_stats_text"
style="@style/game_stats_text"
<style name="instruction_text">
    <item name="android:letterSpacing">0.2</item>
    <item name="textAllCaps">true</item>
    <item name="android:textAlignment">center</item>
</style>
style="@style/instruction_text"
<style name="big_text">
    <item name="android:textSize">32sp</item>
</style>
style="@style/big_text"
<item name="android:textStyle">bold</item>
<item name="android:textColor">@color/black</item>