Come along with me to Day 2 of Android Kotlin Bootcamp.

Come along with me to Day 2 of Android Kotlin Bootcamp.
Want to learn Kotlin? Get started with my Kotlin Bootcamp series on YouTube.
Android Developers now have the option of using ConstraintLayout for all XML layouts. These replace RelativeLayout and LinearLayout. ConstraintLayout is much more complex, and has many features previous not available. Let's start by creating a project. Enter any Application Name, Company domain, and check Include Kotlin support. Choose API 21: Android 5.0 (Lollipop) from the […]
So you have a list of JSON data and you want to display that JSON in your Android app. See how with this video tutorial. A helpful tool to debug JSON data. Just copy and paste JSON in this website: https://jsonformatter.curiousconcept.com/ A good place to get sample JSON data: https://jsonplaceholder.typicode.com/
Most apps display a list of data. A list. A list of news articles. A list of music. A list of movies. A list of users. A list. But how do we do that in Android Studio? Let me explain. Use RecyclerView. It's a built-in solution that Android provides. Lists can be as little as […]
Want to become a better Android developer? Access the Fine Point Mobile Training library. It's free (for now)!
Often, Android developers need to schedule tasks to run in the background. Say you're creating an music streaming app. Every day, you might want to download the latest pop hits, but only if the internet connection is available, unmetered, and if the device is idle. Enter WorkManager: a new way to schedule background tasks. See […]