Initially, ImageView is completely transparent 0.0, I attach the effect of animation of transparency to it, but the value of the alpha channel of transparency does not increase.
And if initially ImageView is made not transparent, that is, when the alpha channel is equal to 255 or (float) 1.0, then everything works well.
How to do what would initially ImageView was transparent, and then gradually became opaque.
<alpha android:duration="300" android:fromAlpha="0.2" android:startOffset="0" android:toAlpha="0.6" > </alpha> <scale android:startOffset="0" android:duration="600" android:fromXScale="1.0" android:fromYScale="1.0" android:pivotX="50%" android:pivotY="50%" android:toXScale="30.0" android:toYScale="30.0" /> <alpha android:duration="300" android:fromAlpha="0.6" android:startOffset="300" android:toAlpha="0.0" > </alpha>