Android TableLayout Tutorial with Example kotlin
Android TableLayout is provided row and column to manage UI data. You can manage your data in tabular format. Like you have a list of… Read More »Android TableLayout Tutorial with Example kotlin
Android TableLayout is provided row and column to manage UI data. You can manage your data in tabular format. Like you have a list of… Read More »Android TableLayout Tutorial with Example kotlin
Android FrameLayout is easy to use and very effective to control views. It shows views on top of other views. It provides a Block area… Read More »Android FrameLayout Tutorial with Example kotlin
Android RelativeLayout provides flexibility to arrange a child’s views relative to each other. This means you can align child view left, right, below, and above… Read More »Android RelativeLayout Tutorial with Example kotlin
Android LinearLayout is used for application UI. It’s a view group that aligns and contain nested widget or layout in a single direction, vertically or… Read More »Android LinearLayout Tutorial with Example
Explicit Intent in Android you can use for launch a specific app component, like a particular Service, Activity or Broadcast. For example, if you want… Read More »Explicit Intent – Start Another activity example in Kotlin
Implicit Intent is not known which app or android component is a target. You have to specifics action in intent, that can invoke any android… Read More »Implicit Intent in Android example – Kotlin
With Android Notification in the Android app, you can give a message to the user like Reminders, alerts, Messages, etc even app not running or… Read More »Android Notification New features in Android 8.0+
Content Providers are the main component of Android app development. The first introduction was for share data with other app or within the application. But… Read More »Content Providers ContentResolver with an example in Android
Android Interview questions list will never end. Android is changing most frequently and updating new components in android app development. Here we are sharing top… Read More »Top 7 Android Interview Questions #3 (Android Developer)
How could create the Android global variable keep remain values around the life cycle of the application regardless of which activity or fragment or other component… Read More »Declare an Android Global Variable in Kotlin