Top "Android-animation" questions

Animations can be integrated into Android Apps, through both Java and XML.

Animation.setFillAfter/Before - Do they work/What are they for?

As in the title of my question what are the methods setFillBefore() and setFillAfter() supposed to do? I was hoping …

android android-animation
How to make Beautiful & Stylish apps like Timely

A Quote from Google in terms of Designing, and some example of apps: Based on what Google said in http://…

android android-layout android-animation android-view android-theme
What do pivotX and pivotY mean in Android animations?

These two terms occur in many places but what exactly do they mean in the context of Android animations?

android android-animation
Set the interpolator for android animations in Java

This seems very simple: I'm trying to set the interpolator to be used for an animation in my App. I …

java android android-animation
TextView animation - fade in, wait, fade out

I am making a picture gallery app. I current have a imageview with a text view at the bottom. Currently …

android android-animation textview fadein fadeout
slide up xml animation on change activity in android

I read the below link before posting this. How to apply slide animation between two activities in Android? I need …

android android-layout android-activity android-animation slideup
How does TranslateAnimation work on Android?

I went through TranslateAnimation (float fromXDelta, float toXDelta, float fromYDelta, float toYDelta) but am still confused about how Translate animation …

android android-animation
Animators may only be run on Looper threads Android

I'm trying to animate something when a task is completed. The problem here is I get this error message: android.…

java android multithreading android-animation
Android: how to use ValueAnimator

I want to do a translate animation using this following public static void move(TextView view){ ValueAnimator va = ValueAnimator.ofFloat(0…

android android-animation
How to draw a path on an Android canvas with animation?

I'm making an Android app and I've got a tricky thing to do. I need to draw a path on …

android android-animation android-canvas