Your First Kotlin Android App: Polishing the App

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

Part 3: Finish the App

19. Challenge: Create an About Page

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: 18. Introduction Next episode: 20. Navigate to the About Page

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.

The about page is the page that will be displayed whenever the user taps the info button. Your challenge in this episode is to design the UI to look like the image on the slide. The text required to build the page is already added in the strings.xml file in the starter project of this episode.

<style name="about_bullseye_text">
    <item name="android:textAlignment">center</item>
    <item name="android:lineSpacingExtra">15sp</item>
    <item name="android:layout_marginStart">16dp</item>
    <item name="android:layout_marginEnd">16dp</item>
</style>