Today we’ll be discussing two important ViewGroups: LinearLayout, RelativeLayout. ViewGroup is a container to hold views. All activity, fragment layouts generally are ViewGroups ViewGroups are extended from Views and are specifically used as containers. Following are some of the common ViewGroups in Android: LinearLayout RelativeLayout FrameLayout TableLayout CoordinatorLayout ConstraintLayout Android LinearLayout LinearLayout is a ViewGroup […]
Android
Android EditText Using Kotlin
In this tutorial, we’ll be implementing EditText using Kotlin in our Android Application. We’ll create EditText using XML as well as programmatically. Furthermore, we’ll look at the ease of Kotlin extension functions in our code. Android EditText EditText is a subclass of TextView that allows user input and editting. It’s commonly used in login screens […]
Android Toast With Kotlin
In this tutorial, we’ll be implementing Android Toasts in our application. Android Toasts Toasts are a UI widget that pops up on your screen for sometime in the form of a notification. They’re typically used when you want to show the user something that isn’t critical but might aid the user with what’s happening in […]
Android Button Using Kotlin
In this tutorial, we’ll be using Kotlin in our implementation of Android Buttons in an application. Let’s dive right in. Overview Android Button class extends TextView. Buttons are a UI widget used to get click interactions from the user to trigger an action in the application. A button can be created in the xml layout […]
Android TextView Using Kotlin
Are you a seasoned Android Developer and are looking to switch from Java to Kotlin? Are you a beginning as an Android Developer and want to use Kotlin in your next cool application? Either ways, this tutorial is the ideal place you’ve come upon. We’ll be discussing TextViews in Android using Kotlin. Using Kotlin, we’ll […]
Android Activity Lifecycle
Activity is one of the primary components in Android Development. No wonder knowing the nooks and corners of Activity is essential as an Android Developer. In this tutorial, we’ll be looking at the lifecycle of an Activity, the various functions invoked in the different stages of an Activity’s runtime. Overview An Activity is a single […]
Android Hello World With Kotlin
Android is the most popular Mobile Operating System. People ranging from your grandmother to you and to the local delivery boy next door use a smartphone that contains numerous applications. The Google Play Store is filled with millions if not billions of Android Applications. Don’t you wish to publish an application that stands out there? […]
Getting Started With Android Studio
Welcome to the series of tutorials on Android Development with Kotlin. This series is designed with the goal to help you build Android Applications using Kotlin. We’ll start with the absolute basics of Android Development and as the series progresses you’ll gain expertise in doing Android Development with Kotlin. In this tutorial, we’ll start with […]