android

Java switch Statement

In this article, you will learn to use switch statement to control the flow of your program’s execution. Java switch Statement When we want to execute a particular block of code/statements among many blocks we can use switch statement. Syntax // switch statement switch(expression/variable) { // case statements // values must be of same type […]

Java switch Statement Read More »

Kotlin Hello World Program

In this article, We will learn how to start with Kotlin Programming and will write a small print “Hello World” program. Steps: IDE (Java Editor) Installation Writing Hello World Kotlin program. Kotlin Editor To write your Kotlin programs, you will need a text editor. There are different IDEs (Integrated Development Environment) available in the market

Kotlin Hello World Program Read More »

Java if…else

In this article, you will learn to use selection statements if, if-else, if-else-if to control the flow of execution of a program based on certain conditions. Selection statements also known as conditional statements allows a program to test several conditions, and execute instructions based on which condition is true. The conditional statements: if statement if-else

Java if…else Read More »

Getting started with Java

In this article, We will learn how to start with Java Programming and will write a small print “Hello World” program. Steps: IDE (Java Editor) installation Writing Hello World Java program. Java Editor To write Java programs, you will need a text editor. There are different IDEs (Integrated Development Environment) available in the market like

Getting started with Java Read More »

Android working with observable data objects using DataBinding

Observable Data Object refers to the capability of an object to notify others(listeners) about the changes in its data. The data binding library allows us to make objects, fields, or collections observable. Any plain-old object can be used for data binding, but modifying the object doesn’t automatically cause the UI to update. Data binding can

Android working with observable data objects using DataBinding Read More »

Android Data Binding In RecyclerView

In the previous article, we have learned about the Basics of dataBinding.Now In this android data binding RecyclerView tutorial, I’m going to show how to implement data binding in Android RecyclerView. Data binding binds the UI with data sources and reduces lines of code. Using DataBinding in an adapter class keeps the code to very

Android Data Binding In RecyclerView Read More »

Android Jetpack Data Binding

In this article, we are going to learn the basics of DataBinding with an emphasis on explaining how data binding is implemented within an Android Studio project. Data Binding  DataBinding is one of the Android Jetpack Architecture Component suggested by android. The Data Binding Library is a support library that allows you to directly connect

Android Jetpack Data Binding Read More »

Android RecyclerView Example with ItemClick(part II)

In the previous article, we have already talked about how to work with RecyclerView with a simple example. Now In this article, we will talk about how to display the description of an item in another activity on clicking of a button of each RecyclerView Item. Get GITHUB code from here. Updating Existing Project 1

Android RecyclerView Example with ItemClick(part II) Read More »

Android how to Integrate Rewarded and Native Ads in your App(part II)

In the previous article, How to Integrate Banner and Interstitial Ads in your App(Part I)  we have talked about how to integrate 2 different types of ads in your application, Banners ads and Interstitial ads. Now In this article, we will talk about how to integrate the other two ads in your application ie. Rewarded

Android how to Integrate Rewarded and Native Ads in your App(part II) Read More »

Android how to Integrate Banner and Interstitial Ads in your App(Part I)

AdMob is a multi-platform mobile ad network that allows you to monetize your android app. It is very useful particularly when you are publishing a free app and want to earn some money from it. Integrating AdMob is such an easy task that it takes not more than 5mins. In this article, I will teach

Android how to Integrate Banner and Interstitial Ads in your App(Part I) Read More »