How to create custom transitions in Android Studio?

1

I'd like to know how to make custom transitions on Android. Transitions between activities are always the same. Are there any tutorials that teach you how to improve transitions?

    
asked by anonymous 11.03.2017 / 03:59

1 answer

6

To create custom animations between screen transitions in the application, you can use the overridePendingTransition() of your public class Activity . Its syntax is:

public void overridePendingTransition(int animacaoEntrada, int animacaoSaida)
  

Do you have a tutorial that teaches you how to improve transitions?

Yes, there are

11.03.2017 / 06:01