Android

GridView-in-Android-With-Example.png

GridView in Android With Example

Hi, today we are going to learn another view container which displays items in two dimensions ...
Android-CardView-with-Example.png

Android CardView with Example

Hi developer, Today we are going to learn about a view container which is used to style the app design ...
ScrollView-in-Android-with-Example.png

ScrollView in Android with Example

Now we are going to learn about another widget of the Android System. It is Android ScrollView ...
ListView-in-Android.png

ListView in Android

Hello Android Learner, you want to display a list in an application. What will you do? Android has a widget ...
ANDROID-IMAGEVIEW-with-simple-example.png

Android ImageView with example

In Android, ImageView is a view used to display images. We can set the image to the ImageView using the ...
How-to-create-Android-EditText.png

EditText Tutorial With Example In Android Studio (Kotlin/Java)

Android EditText is a type of User Interface that allow the user to enter or modify text. Its parent class ...
How-to-create-Image-Button-Android.png

How to create ImageButton In Android

ImageButton is a type of Android User Interface used to display a button with an image. ImageView is the parent ...
Android-CheckBox-with-example.png

Android CheckBox with example

CheckBox is a two-state button that can be either ON (checked) or OFF (unchecked) state. We will learn about Android ...
Android-RadioGroup-with-simple-example.png

Android RadioGroup with simple example

Hello developers! We have learned earlier about Android Radio Button. Let's take a quick look at Android RadioGroup ...
Android-Radio-Button-with-example.png

Android Radio Button with example

RadioButton is a two-states user interface of the Android system that is either checked or unchecked. A Radio Button is ...
Android-TextView-With-Examples.png

Android TextView with Examples (Kotlin and Java)

TextView is a User Interface (UI) used to display text labels in Android. We can create Android TextView in two ...
Create-Own-Content-Providers-In-Android.png

Create Custom Content Providers In Android

Hello Android developer! In this example you will learn how to create your own Content Provider In Android. Here we ...
Android-Content-Providers.png

Content Providers In Android

Content Providers are one of the core component of the Android system. Content Providers play a very important role in ...
Simple-Android-Broadcast-Receiver-Example.png

Android Broadcast Receiver Example

Hello Android developer! In this tutorial, we will learn how to create a simple Android Broadcast Receiver in Android ...
Android-Service-Example-1.png

Android Service Example

Android Service is a amazing component of the Android application development. By using Android Service you can perform long running ...
Working-with-Android-Fragments.png

Working with Android Fragments

Fragment is an important topic of Android App Development. We already discussed about that. Now it's time to practically implement ...
Lifecycle-of-Android-Fragments.png

Lifecycle of Android Fragments

Android fragments have their own events, layouts and lifecycle. In this section we will discuss the various stages of fragments ...
Android-Broadcast-Receiver.png

Android Broadcast Receiver

Broadcasts is a messaging system between apps in the Android operating system. Android Broadcast is a component in Android that ...
Services-In-Android.png

Services In Android

A Service is a special type of Android component used to perform long-running operations in the background. You can play ...
Introduction-to-Android-Fragments.png

Introduction to Android Fragments

Android Fragment is a reusable Graphical User Component (GUI). In other word, A Fragment is a piece of the Android ...
Android-Activity.png

Activity in Android

In this tutorial we will learn one of the most important topics of Android app development, which is Android Activity ...
Introduction-to-Gradle-and-build.gradle-files.png

Introduction to Gradle and build.gradle files

The Gradle build system is used to build Android applications in Android Studio. Android projects are handled by the Gradle ...
Android-Studio-Project-Folder-Structure.png

Android Studio Project Folder Structure

Hey android developer, before proceeding let's know some basic folder structure of android app project ...
COMPONENT-OF-ANDROID-STUDIOS-MAIN-WINDOW.png

Component of Android Studio’s Main Window

Hello, This post provides an introduction about the basic components of the main window of Android Studio. When you develop ...
How-To-Create-New-Project-In-Android-Studio.png

How To Create New Project In Android Studio?

Hello Android learner! You will be able to create/start an android project after reading this article. This is very easy ...
Android-Studio-Installation-And-Setup.png

Android Studio Installation And Setup

In this part we will learn how to install Android Studio so that you can start your Android App development ...
What-is-Android.png

Introduction to Android

What is Android? Android is a popular Linux based open source operating system used in mobile phones, tables, smart watches ...
THUMB-Create Android Virtual Device (AVD) in Android Studio

Create Android Virtual Device (AVD) in Android Studio

As an Android developer you always need to test your app frequently. If you have a real Android device, that's ...
CLEAR-SPINNER-VALUE-IN-KOTLIN-ANDROID.png

How to clear spinner value in Kotlin Android

Hello android developer, Android spinner is a view similar to the dropdown list which is used to select one option ...
Thumb-Android Custom Action Bar

Android Custom Action Bar – Action bar Logo and Title click events handling

Hello Android developer, Android toolbar (formerly known as action bar) is an important android design element. It is used to ...
Create Material Design Style Spinner DropDown in android

Create Material Design Style Spinner DropDown in android

Howdy Android developer! This article shows you how to create Floating label spinner drop-down using Material Design AutocompleteTexView in Android ...

How to Create Free Live Weather App In Android – Step by step – Part 2

Welcome back! This is part-2 of the Free Live Weather App In Android. Let's get started ...
Thumb-Weather--App-1

How to Create Free Live Weather App In Android – Step by step – Part 1

Hi Developer! In this Android project you will learn how to Create Free Live Weather App In Android - Step ...
THUMB-ANDROID JSON PARSING FROM WEB URL WITHOUT ANY LIBRARY

Android JSON Parsing from Web URL without Any Library

Hi Developer! In this tutorial you will learn how to parse JSON data from the URL. Please read previous part ...
Thumb-Android-JSON-Parsing-Tutorial

Android JSON Parsing Tutorial

Hi Android developer! JSON (JavaScript Object Notation) is readable format for structuring data. It is used to transmit data between ...

Android AdMob Banner Ads in Recyclerview

Hi Android developer! AdMob is one of the largest ad network that helps you monetize. You may have seen banner ...
THUMB-ANDROID-FLOATING-ACTION-BUTTON-EXAMPLE

Android Floating Action Button Example

Android Floating Action Button is an interesting component introduced by Android Material Design. It attract the user's attention. In this ...
Android-Snackbar-Example

Android Snackbar Example

Android Snackbar is introduced by Android Material Design. Snackbar is light-weight widget to show messages. This section covers a little ...
HOW-TO-IMPLEMENT-RIPPLE-EFFECT-IN-ANDROID.png

How to Implement Ripple Effect in Android

Ripple effect is compatible with device running lollipop (API 21) and above. In this section you are going to learn ...
HOW-TO-BLUR-IMAGE-IN-ANDROID.png

How to Blur Image in Android

Image Blurring is a useful tool in Image Processing. You can highlight and focus the image using the blur effect ...
ANDROID-COLOR-PICKER-LIBRARY.png

Android Color Picker Library

There are many color picker libraries available today. Ambilwarna android color picker library is one of the best. This library ...
Handle-Runtime-Permissions-In-Android

How to Handle Runtime Permissions In Android

In this example, You will learn how to handle the runtime permissions in Android ...
ANDROID-RATINGBAR-EXAMPLE-1.png

Android RatingBar Example

Rating bar is used to get the rating from the user. A user can simply touch and drag on the ...
HOW-TO-CREATE-OPTIONS-MENU-IN-ANDROID-1.png

How To Create Options Menu in Android

The Android menu provides some actions for the user. Such as settings, search, help etc. In this example you will ...
SIMPLE-RECYCLERVIEW-WITH-CLICK-LISTENER-EXAMPLE.png

Simple RecyclerView with Click Listener Example

Android RecyclerView is an improved version of ListView and GridView. It has the ability to display data horizontally, vertically as ...
DISPLAY-FULL-SCREEN-LOADING-DIALOG-1.png

How to Display Full Screen Loading Dialog

Hello Android Developer! Sometimes you need to show full screen loading dialog to prevent the user from input. In this ...
How-to-Use-Glide-Image-Loader-Library-in-Android.png

Handling Images In Android with Glide

Glide image loader library is used to download and handle images. In this tutorial you will learn integration and usage ...
TOUCH-AND-DRAG-TO-ERASE-PHOTO-IN-ANDROID.png

Touch and Drag to Erase Photo In Android

Photo editing is a popular tool in Android apps. After learning this lesson, you will be able to create a ...
GET-URI-OF-CAPTURED-PHOTO.png

How to Get URI of Captured Photo

Hello Developer! In this section you will learn how to get URI of captured photo ...
SHARE-INTENT-FOR-A-BITMAP-WITHOUT-SAVING-A-FILE-1.png

Share Intent For a Bitmap Without Saving a File

Hi Android Developer, When you don't want to save the bitmap permanently to the user phone and just want to ...