Zoomin animation on picture in android

August 30, 2012 | Rishabh Agrawal | General

Zoomin animation falls under the category of View Animation. The view animation framework animations, which can both be declared in XML.
The zoomin animation xml file is given below:

Zoomin.xml

<set>

<scale android:fromXScale=“2.0” android:toXScale=“1.0”

android:fromYScale=“2.0” android:toYScale=“1.0”

android:pivotX=“50%p” android:pivotY=“50%p”

android:duration=“500” />

</set>

•<set> contains other animation elements.
•<scale > is a resizing animation tag. You can specify the center point of the image from which it grows outward (or inward) by specifying pivotX and pivotY.
•fromXScale/fromYScale represents the initial state and toXScale/toYScale represent the final state .

Hence , in this example the image is zoomed to its double size as “1.0” scale specifies no change.

Note: The zoomin.xml is created in anim folder which is a part of res folder.

The code for loading and starting the animation is given below.

public void onItemClick( View v)
{

Animation animLinear = AnimationUtils.loadAnimation(mContext, R.anim.zoomin);
v.startAnimation(animLinear);//starts the animation

}

android.view.animation.AnimationUtils  defines common utilities for working with animations and loadAnimation loads an animation object from a resource anim folder.

Hence ,create the animation xml file first and then add the above code.

Screenshots:

 


THE AUTHORRishabh Agrawal

Rishabh Agrawal is the founder of Creatiosoft, a company focused on creating high-quality software for the iGaming industry, specialising in poker and card games. With years of experience, Rishabh is dedicated to delivering engaging and user-friendly gaming experiences. Through this blog, he shares his passion and insights to help readers understand the latest trends and advancements in iGaming.

Recent Posts

The Future of Mobile Gaming: What to Expect in the Next 5 Years

Over the years, mobile gaming has seen amazing development and innovation utilized by the game development company in India. It…
06 Jun 2023 Rishabh Agrawal

How Do I Get Started With NFT Gaming?

The popularity of the NFT game has created a different fan base. There was a time when games were a…
18 Jul 2022 Rishabh Agrawal

What Are The Top Trends in NFT Marketplace 2022?

The NFTs are the new engaging and revolutionary technology across the globe. Though, these non-fungible tokens appeared for the first…
09 Jun 2022 Rishabh Agrawal