Android Kotlin Fundamentals course.
The Android Kotlin Fundamentals course was created by the Google Developers Training team. In the course, you learn Android Kotlin programming concepts and build a variety of apps.
The Android Kotlin Fundamentals course materials include:
- Course codelabs
- Starter apps and solution code in GitHub for apps that you create in the codelabs
You can find more information here.
This course assumes that you know (or can quickly learn) the Kotlin programming language. To take the Android Kotlin Fundamentals course, we recommend that you have at least two years of experience in a full-fledged object-oriented programming language such as Java, C++, or Smalltalk.
You should be familiar with all the concepts, tools, and vocabulary taught in Udacity's free Kotlin Bootcamp for Programmers course.
You should also be comfortable navigating GitHub and familiar with the following concepts:
- Basic multithreading and exception handling.
- How code is built, compiled, and executed, in general terms.
It also helps to have an idea of what functional programming is, but it's not required.
We recommend that you take the Android Kotlin Fundamentals codelabs in sequence, but it's not a requirement.
Lesson 1 teaches you how to set up Android Studio to use Kotlin and how to build apps. You start with "Hello World" and move up to an app that uses image files and a click handler. You learn how Android projects are structured, how to use and modify views in your Kotlin Android app, and how to make sure your apps are backward-compatible. You also learn about API levels and the Android Jetpack libraries.
In Lesson 2, you learn how to use the Android Studio Layout Editor to create linear layouts and constraint layouts. You create apps that get and display user input, respond to user taps, and change the visibility and color of views. This lesson also teaches you how to use data binding to eliminate inefficient calls to the findViewById() method.
In Lesson 3, you learn how to create useful navigation in an app. You create a fragment and add it to an app, then add navigation to the app using the Android Studio navigation graph. You add a navigation drawer and an options menu to your app, and you work with the app's back stack, changing the destination of the system Back button. Finally, you learn how to invoke an external activity from within the app.
In Lesson 4, you learn about the activity and fragment lifecycles, and you learn how to manage complex lifecycle situations. You work with a starter app that contains several bugs related to the Android lifecycle. You add logging to the app to better understand the app's lifecycle events, and you fix the bugs that the app contains and add some enhancements to the app. You also learn about Android Jetpack's lifecycle library, which can help you manage lifecycle events with code that's better organized and easier to maintain.
Lesson 5 teaches you how to use ViewModel and LiveData objects. You learn how to use ViewModel objects to enable data to survive configuration changes such as screen rotations. You convert an app's UI data into encapsulated LiveData and add observer methods that are notified when the value of the LiveData changes.
You also integrate LiveData and ViewModel with data binding so that the views in your layout communicate directly with ViewModel objects, without using the app's fragments to relay information. This technique simplifies your code and eliminates the need for click handlers in the UI controllers.
Lesson 6 teaches you how to use the Room database library. Room takes care of many of the chores of setting up and configuring a database, and simplifies the code for interacting with the database. You learn how to use Kotlin coroutines to move database operations away from the main thread, and you learn more about using ViewModel and LiveData with app navigation.
Lesson 7 teaches you how to use a RecyclerView to efficiently display lists and grids of items. For complex lists and grids, you learn ways to make RecyclerView more efficient and your code easier to maintain and extend. You learn how to make items in a RecyclerView clickable. You also learn how to add more than one view holder and layout to lists and grids in a RecyclerView, for example, to add a header in your app.
Lesson 8 teaches you how to use community-developed libraries to connect to a web service to retrieve and display data. You learn how to handle potential network errors and use the Glide library to load and display photos from the internet. You also build a RecyclerView and use it to display a grid of images.
Lesson 9 teaches you how to add a repository to abstract the data layer and provide a clean API to the rest of the app in your Android Kotlin app. You also learn how to use WorkManager to schedule background tasks in an efficient and optimized way.
This lesson teaches the basics of Android app design. It introduces themes and styles, material design, and how to make your app more accessible to everyone.