java animation android duration

NotdoopeHoats

New Member
This animation isn't animating it just instantly disappears no matter what duration I sethere is the java code and xmlJava Code:\[code\] Animation shrink =AnimationUtils.loadAnimation(Page.this, R.anim.shrink); deleteMe.startAnimation(shrink);\[/code\]XML File: \[code\] <scale android:duration="10000" android:fillAfter="true" android:fromXScale="1.0" android:toXScale="0" > </scale> <alpha android:duration="10000" android:fromAlpha="1.0" android:toAlpha="0" > </alpha></set>\[/code\]
 
Back
Top