Android Animations Archives - Androhub

RecyclerView Animation Banner

RecylerView Animation

In earlier tutorials we had learned implementation of RecyclerView. Now in this tutorial we will move to RecyclerView Animation part. The best thing of RecyclerView is that it provide inbuilt animations but the ListView and GridView don’t provide inbuilt animation. Now to implement the Animation in RecyclerView it provide some methods that we need to use: notifyItemRemoved(position)

Read More
Animations

Android Animation

Animation takes some parameters such as start value , end value, size , time duration , rotation angle e.t.c and perform the required animation on that object. It can be applied to any type of object. So in order to use this , android has provided us a class called Animation. In order to perform

Read More
TextSwitcher

Android TextSwitcher

A TextSwitcher is a specialized ViewSwitcher that contains only children of type TextView. A TextSwitcher is useful to animate a label on screen. Whenever setText(CharSequence) is called, TextSwitcher animates the current text out and animates the new text in. To learn Basic of Android Animation  go to  Android Animation Tutorial. Two types animations are required for 

Read More
ViewAnimator

Android ViewAnimator

A ViewAnimator  is used to animate or switch between the screens. To learn Basic of Android Animation  go to  Android Animation Tutorial. Example In this example i will show how to use ViewAnimator  to switch between screen with Animation. VIDEO DEMO Let’s get start by creating a project in Eclipse IDE. 1. Create a new project in Eclipse by

Read More
ViewFlipper

Android ViewFlipper

ViewFlipper is an extension class of ViewAnimator, which animates between two or more views that have been added to it. Specfically, only one child is shown at a time. To learn Basic of Android Animation  go to  Android Animation Tutorial. To get a better understanding, suppose that we have two TextViews that will be used in

Read More