In this article, we are going to implement the zoom in and zoom out feature in TextView. As we zoom we will see the image… Read More
Category Archives: Java
In this article, we are going to Load all the images from the Firebase Storage and showing them in the RecyclerView. Normally we show an… Read More
In this article, we are going to implement fast-scroll using the recycle-fast-scroll library. For the item, in the RecycleView we are just implementing a button… Read More
HtmlTextView is an extended TextView component for Android, which can load HTML components by converting them into Android Spannables for viewing. In addition to HTML… Read More
A stream is a sequence of objects that supports various methods which can be pipelined to produce the desired result. Stream is used to computing… Read More
SnapHelper is an amazing feature that is seen in RecyclerView. With the help of this feature, we can make the items of the RecyclerView properly… Read More
Tinder Swipe View is one of the most used UI components in many Android apps. This feature provides us to easily represent the data in… Read More
HashTable is an underlying data structure where the insertion order in HashTable is not preserved, and it is based on the hashcode of keys. Duplicates… Read More
In this article, we are going to show the fade and shrink animation in RecyclerView. When we move downward then the item at the top… Read More
The queue is a linear data structure that follows the FIFO rule (first in first out). We can implement Queue for not only Integers but… Read More
A stream is an ordered pipeline of aggregate operations(filter(), map(), forEach(), and collect()) that process a (conceptually unbounded) sequence of elements. A stream pipeline consists… Read More
Stack is a linear Data Structure that is based on the LIFO concept (last in first out). Instead of only an Integer Stack, Stack can… Read More
Thread is the backbone of multithreading in java. Multithreading is a feature that allows concurrent execution of two or more parts of the program for… Read More
Threads are light-weight processes within a process.. Multithreading in java is a feature that allows concurrent execution of two or more parts of a program… Read More

