Top "Android-animation" questions

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

Android property animation: how to increase view height?

How to increase the view height using Property Animations in Android? ObjectAnimator a = ObjectAnimator.ofFloat(viewToIncreaseHeight, "translationY", -100); a.setInterpolator(…

java android android-animation objectanimator viewpropertyanimator
Android Animation: Wait until finished?

I would like to wait until an animation is finished* in an Android ImageView before continuing program execution, what is …

java android concurrency android-animation
How to play GIF in android

Hello stackoverflow I'm trying to develop an android application to play my own GIF, here is the code snippet MainActivity.…

android android-animation
How to do the new PlayStore parallax effect

Does anyone know how can I achieve the new parallax scrolling effect - you can see the effect when you …

android android-layout android-animation material-design android-scroll
Resizing layouts programmatically (as animation)

I want to resize some layouts in my Activity. Here is the code of the main XML: <LinearLayout android:…

android layout animation android-animation
Android - Custom Animation on fragment transaction not running

I'm using Google API 8 (Android 2.2) with support package v4. It doesn't give any error or animation. Transaction: FragmentTransaction transaction = manager.…

android android-fragments android-animation
Set Animated .GIF As Background Android

I am new to Android and I am having trouble playing an animated .gif file in the background of my …

android android-animation animated-gif
Android FragmentTransaction Custom Animation (Unknown Animator Name: Translate)

I'm trying to get a custom animation to work with my fragment. I've followed the online tutorials but I've been …

android android-fragments android-animation
How to create the delay of 1 sec before set the alpha of View?

In My Application i am going to set the alpha after one animation. As like: hideMenu = AnimationUtils.loadAnimation( getApplication(), R.…

android xml animation android-animation layout-animation
Expand ListView item with animation

I have a ListView. Initially, the ListView contains some data. When the user clicks on an item, another layout will …

android android-listview android-animation expandablelistview expandablelistadapter