Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6992661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:39:49+00:00 2026-05-27T19:39:49+00:00

In android how to make a image grow from one point using animation? I

  • 0

In android how to make a image grow from one point using animation?

I mean to say is…i have a button ..and i want is when i click on that button my image must grow(ascending order) to grow bigger and bigger from that point …and when again i click on that button again it must collapse gowing smaller and smaller to end at that point

Can any anybody help me in doing this using android animation?
i’m new to android

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:39:50+00:00Added an answer on May 27, 2026 at 7:39 pm

    This can be achieved using View Animation utility. This scales the image from 100% to 140% for 1 sec

    Place the following file in res/anim/scale.xml

    <?xml version="1.0" encoding="utf-8"?>
    <set android:shareInterpolator="false"    
     xmlns:android="http://schemas.android.com/apk/res/android">
    <scale
        android:interpolator="@android:anim/accelerate_decelerate_interpolator"
        android:fromXScale="1.0"
        android:toXScale="1.4"
        android:fromYScale="1.0"
        android:toYScale="1.4"
        android:pivotX="50%"
        android:pivotY="50%"
        android:fillAfter="false"
        android:duration="1000" />
     </set>
    

    Java code

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        final View view = findViewById(R.id.imageView1);
    
        final Animation anim = AnimationUtils.loadAnimation(this, R.anim.scale);
    
        Button button = (Button) findViewById(R.id.button1);
        button.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View v) {   
                view.startAnimation(anim);
            }
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make an Android busy animation, with similar image to default. Like
I have an ImageButton: I want to make the image (circular play image) bigger.
I am trying to make a button with background image. <Button android:layout_width=wrap_content android:layout_height=wrap_content android:layout_marginLeft=5px
how to make vertical align button android in android XML file like the image
I have a very precise question: I want to make an android application that
I have an android application, which needs to display an image and make that
I want to make an android application that shows a listing of applications (downloaded
I want to make some changes to the stock Mms Android application and install
I'm trying to make a GUI program with the Android SDK, using their Lunar
I have to make a simple layout in android but have problem with the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.