android animation Tween animation can perform only four small transitions like rotate, scale, transparency, and movement.) In 1 file you can define only single root, but if you want to define multiple animations in 1 file then you can use set. Inside set you can define multiple animations according to your need. android animation file will be created at **res/anim/**
directory of your project. File name would be anything.
1. **<alpha>** for transparency2. **<scale>** for increase decrease size3. **<rotate>** for rotation4. **<translate>** for movement.5. **<set>** to add more than 1 animation in 1 file.
By default, all android animation instructions are applied simultaneously. To make them occur sequentially, you must specify the startOffset attribute, as shown in the example below. Screen coordinates (not used in this example) are (0,0) at the upper left hand corner, and increase as you go down and to the right. Some values, such as pivotX, can be specified relative to the object itself or relative to the parent. Be sure to use the proper format for what you want (“50” for 50% relative to the parent, or “50%” for 50% relative to itself).
Create new file in ”res/anim” names ”test_anim.xml” (if anim directory doesn’t exist in res directory, then create manually) Inside test_anim.xml we can write our code like
<rotate android:duration="3000"android:fromDegrees="0"android:toDegrees="80" />
by this code we can rotate any object, android animation will be set through java code to any object.
Button btn = (Button) findViewById(R.id.my_button);Animation animation = AnimationUtils.loadAnimation(context,R.anim.test_anim);btn.startAnimation(animation);
That’s it.
continue to next post for detailed info about android animation in google material design
Quick Links
Legal Stuff
Social Media