Top "Android-animation" questions

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

Animate visibility of a view from gone to visible with animation

I have a view that is invisible by default(Just for the first time). Now I need to switch the …

android animation android-animation visibility
How to give top to bottom animation in Android?

I am able to give bottom to top animation when I go to next activity but now when I pressed …

android android-animation android-transitions
How to animate recyclerview on scroll like Google plus/Google newsstand?

How do I animate the RecyclerView when the items appear for first time and also when the user scrolls, just …

android scroll android-animation android-recyclerview
Circular Progress Bar ( for a countdown timer )

Ok so I have a countdown timer of 15 seconds that works perfectly fine and I'd like to make a custom …

android xml android-animation countdowntimer
How to animate floating action button using android activity transition?

I am planning to implement something like this in one of my project but the concept for the following is …

android android-animation android-transitions
Pop the fragment backstack without playing the Pop-Animation

I push a fragment on the fragment stack using the following code: FragmentManager fragmentManager = getActivity().getSupportFragmentManager(); FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction(); …

android android-fragments android-animation
Android View Disappearing When Go Outside Of Parent

I have a LinearLayout and ImageView inside this LinearLayout. There is a translation effect for ImageView. // v = ImageView ObjectAnimator animation2 = …

java android animation android-animation
Make activity animate from top to bottom

I am writing an Android app where I want the activity to appear by animating in from the bottom of …

android android-animation android-transitions
Android change background image with fade in/out animation

I wrote code which can change background image random every 5 second.now i want to use fade in/out animation …

android android-imageview android-animation
Animate the removal of a ListView item

I'm attempting to animate the removal of a ListView item using this: mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void …

android android-layout android-listview android-animation