Android Developer Roadmap 2022 is learning paths to understanding Android development.
In Android, programming is done in two languages JAVA or Kotlin and Jetpack Compose(Declarative UI) or XML(Extension Markup Language). The XML file deals with the design, presentation, layouts, blueprint, etc (as a front-end) while the JAVA or KOTLIN deals with working of buttons, variables, storing, etc (as a back-end). And the biggest confusion for an Android beginner is which language to choose between Java and Kotlin? So let me try to overcome the confusion first.
Java is the official language for Android App Development and consequently, it is the most used language as well. Kotlin has also been introduced as a “official” Java language in 2017. Kotlin is much simpler for beginners to try as compared to Java and it can also be used as an “entry point” for Android App Development. So my recommendation for a beginner is to go with Java first, then jump to Kotlin.
- Introduction to Java Programming
- Object Oriented Programming (OOPs) Concept in Java
- Java difference between primitive type and class types
- 7 Key Android Concepts
- Android best practices
- Introduction to Activities
- Understand The Activity Lifecycle
- Understand The Fragments
- Button click counter application
- Write an application which counts the number of button clicks and shows the click count on the app screen.
- Create repository of practicle 1.1 on Gitlab
- Introduction to version control: What Is Version Control?
- How to use git
Create the scorekeeper application.
- User Interface
- Basic knowledge of
A quick look on Java and Android code style
- Introduction of Json
- What is JSON and why would I use it?
- Json vs XML
- Write an application to request read and write storage permission on button click and Show result on the screen.
- Write an application that has two edit texts for user name and user phone number, button and recycler view, shows user inputs in recycler view on button click.
- Android From Scratch: Understanding Views And View Groups
- Build a Responsive UI with ConstraintLayout
- Recyclerview - Recyclerview component - Recyclerview Pro Tip
Kotlin is a great fit for developing Android applications, bringing all of the advantages of a modern language to the Android platform.
- Java vs kotlin
- Kotlin basic
- Setup kotlin in android studio
- Android App Development Masterclass using Kotlin
- Write an application that lets the user trigger, update and cancel a notification using three buttons.
- Create an app that uses a broadcast receiver to receive incoming SMS messages. The app should display a notification when a message with a specific keyword is received.
- Create a music player application. Use android Service to play music in background.
- Guide to background processing
- Broadcasts
- Services
- Imaplment Contact diary applicatio. User should be able to add, edit, delete, and search for contacts. Users can set reminders for the birthdays of their contacts and receive notifications.
- Introduction of database:Udemy section 10 : lecture 177 - 178
- Data and file storage overview
- Shared preferences
- Introduction of database:Udemy section 10 : lecture 189 to 191
- Save data using SQLite
- Storing data with Room
Now it’s time to dive into the real development with 50% work and 50% training daily
- Create a UI like this
- Create a Quiz Appication. It should displays a series of multiple-choice questions. Users can select an answer and receive instant feedback on whether they were correct or not.
- Retrieve and display a simple users list from web API to Android recyclerview using the retrofit library. Display Name, email, and city. Also add functionality to Delete the item.
- GET Api Url: http://jsonplaceholder.typicode.com/users
- Guide to app architecture
- App architecture recommendation
- Android Application Architecture
- Android MVP Architecture
- Android Architecture Patterns: Model-View-ViewModel
- Android MVVM Design Pattern
- Use liveData and viewModel in practical 3.2
- Create an android application to show a list of movies in recycler view using rxjava and retrofit using MVP architecture.
- GET API Url : https://top-250-movies-api.herokuapp.com/api/v1/movies
- Self exercise: Write an open-source project to cover operators of rxjava such as map, flat map, combine, zip etc...
- Rxjava and RxAndroid
- Part 1: The Basics
- Part 2: Operator, Operator
- Part 3: Reactive with Benefits
- Part 4: Reactive Android
- Example: Rxjava with retrofit
- Retrieve and display a simple users list from web API to Android recycler view using retrofit. Display name, email and city in recyclerView. Store users in database. GET Api Url : http://jsonplaceholder.typicode.com/users
- On user item click display all albums of selected user on next screen. GET Api Url : https://jsonplaceholder.typicode.com/albums?userId=1
- On the Album item click show all photos of the selected album on the next screen.GET Api Url : http://jsonplaceholder.typicode.com/photos?albumId=2
- Coroutines Overview
- Thread vs. Coroutines
- Kotlin coroutines on Android
- Background processing using coroutines- Udemy section 12: lecture 276
- Make a calculator application. Save calculation history in the database. Users can view history and clear history.
- Implament product application. Retrive product list from api, also show full detail on item click
- API https://fakestoreapi.com/products
- Write Unit test of praticle 6.2