Android - how to get android.R.anim.slide_in_right

AndroidAnimation

Android Problem Overview


I'm playing about with animations with android. The animations android.R.anim.slide_in_left and android.R.anim.slide_out_right are provided. I'm looking for a way to get the opposite animations i.e:

android.R.anim.slide_in_right and android.R.anim.slide_out_left

or how I can specify these myself.

Android Solutions


Solution 1 - Android

Here are slide_in_right and slide_out_left from the Android open source project.

Solution 2 - Android

android:inAnimation="@android:anim/slide_in_left"
android:outAnimation="@android:anim/slide_out_right"

Solution 3 - Android

Both slide_in_right and slide_out_left exist in Android 2.1 and above.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser130076View Question on Stackoverflow
Solution 1 - AndroidCommonsWareView Answer on Stackoverflow
Solution 2 - AndroidAshish AnandView Answer on Stackoverflow
Solution 3 - AndroidemidanderView Answer on Stackoverflow