Skip to main content

Posts

Slow Emulator? Speed up android emulator loading precessing speed.

We are already facing the same issue while using the Android Virtual Device I mean Android Emulator. Now here is the solution to boost up the Android emulator speed. Generally Android emulator processing speed depends on the system's configuration but still, there are some setting by which we can boost up the Android emulator speed or processing power. Android Development Tools  or you can say that ADT version 9.0.0 or later has some functionality by which you can save the last state of an emulator and on the next boot you will get an open up screen with the last state that will decrease your startup timing. Follow the following screenshot to enable this awesome feature and boost up your android emulator speed. First of all, you have to create a new android virtual device or you can say android emulator You have to select or check Quick Boot Option as given in below screenshot. After that, you have to enable the snapshot feature that will help you to speed up yo...

CUBE IN SCALING ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new CubeInScalingTransformation()); That's It you're done.

ZOOM OUT ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new ZoomOutTransformation ()); That's It you're done.

VERTICAL SHUT ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new VerticalShutTransformation ()); That's It you're done.

VERTICAL FLIP ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new VerticalFlipTransformation ()); That's It you're done.