Navigation Drawer Layout Tutorial | Toolbar tutorial
In this tutorial, we are going to learn how to implement a navigation drawer Layout into our app. We will build this navigation drawer from a scratch. In Android, the…
In this tutorial, we are going to learn how to implement a navigation drawer Layout into our app. We will build this navigation drawer from a scratch. In Android, the…
In this tutorial, we will learn how to use Material Dialogs in android. A dialog is a small window that asks the user to make a choice or enter more…
Android ListView is a ViewGroup that displays a list of things in multi rows and includes an adapter that inserts the items into the list automatically. The adapter's primary function…
Option menu in android is the primary menus of android. They can be used for things like settings, search, and edit items, etc. The Options menu allows you to perform actions that have…
In this tutorial, we will learn how to use Recycler View in Android using Kotlin. A RecyclerView is an advanced version of a ListView that performs better.Android RecyclerView allows you to…
In this tutorial, we will learn the Webview in Android with an example in the kotlin language.WebView is a view that allows you to view web pages within your application.…
In this tutorial, we will learn about Video Player in Android. We will create an android application and play video from the raw directory. Note: The android.widget.VideoView class provides methods to play…
In this tutorial, we will learn how to create the Transparent Activity in the Android studio. We will create a simple application that will display a simple TextView inside a…
In this article, we will learn how to create a multiplication table app using seek bar in kotlin language. This is a very basic Android app that allows you to…
Today we are implementing a ViewPager using Fragment. ViewPager on Android allows users to flip through from left to right. In ViewPager App, we implemented a ViewPager that can navigate…