How can I add “slide animation” to an intent in Android?
I have tried creating anim files (such as R.anim.slide_in_right, etc.); however, these anim files require duration. As such, duration leads to slower intent transactions. For example, when the duration is set to 300, the new page can take some time to be loaded even if the code is optimized. For example, Telegram uses a faster slide animation for choosing country codes. Therefore, I want to learn how I can code an intent with a faster slide animation, and without the requirement of specifying a duration.