Is there a way to find what the default transition animation represents by default?

I need to change the layouts in my activity (fire them in one action). I put animations between them as

<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator"> <translate android:fromXDelta="100%" android:toYDelta="0" android:duration="300" /> <alpha android:fromAlpha="0.1" android:toAlpha="1.0" android:duration="300" /> </set> 

Is there any way to find that it has default activity transition animations on the phone?

+4
source share
2 answers

By "standard-standard animation" do you mean default transition animation by default? If so, this is the specific phone (or provider).

+1
source

Yes. Various smartphone makers are slightly tweaking the Android version of Android.

0
source

Source: https://habr.com/ru/post/1381699/


All Articles