It turns out that I am developing an app that has a Splash Screen first, to which I wanted to make the logo move from below to the center of the activity, but when debugging the application on my phone the animation is not appreciated, I have used the following code:
Animation anim = AnimationUtils.loadAnimation(this,R.anim.move_up);
ImageView img = (ImageView) findViewById(R.id.imageView);
img.startAnimation(anim);
The following is from an XML in anim:
<translate
android:duration="900"
android:fromYDelta="100%p"
android:toYDelta="0"
/>
Is there any other way to make the animation? The truth is I'm a first-timer on android