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

  • Home
  • SEARCH
  • 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 7985433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:33:15+00:00 2026-06-04T11:33:15+00:00

I have 45 buttons which i have created by loop in java code. Now

  • 0

I have 45 buttons which i have created by loop in java code. Now i need to set and change the background image depending on the user interaction and also need resize the image also depending on the button. It will be help-full for me if i can do everything for an image button in java.

How i can resize the background image of a button in java code.

  • 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-06-04T11:33:17+00:00Added an answer on June 4, 2026 at 11:33 am

    If you want to resize an image on basis of the dimension of a Button, use getHeight() and getWidth() methods to get the size of the button and use following function to resize image for Button:

    Resizing a Bitmap:

    public Bitmap getResizedBitmap(Bitmap bm, int newHeight, int newWidth) {
    
    int width = bm.getWidth();
    
    int height = bm.getHeight();
    
    float scaleWidth = ((float) newWidth) / width;
    
    float scaleHeight = ((float) newHeight) / height;
    
    // create a matrix for the manipulation
    
    Matrix matrix = new Matrix();
    
    // resize the bit map
    
    matrix.postScale(scaleWidth, scaleHeight);
    
    // recreate the new Bitmap
    
    Bitmap resizedBitmap = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, false);
    
    return resizedBitmap;
    
    }
    

    Now you can use setBackgroundDrawable() or setBackgroundResource() methods on a Button object to change its Background Image and you can resize a Button via setHeight() and setWidth() methods.
    Reference

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created 4 buttons via Interface Builder. I have an array which has
I have butons which are created dynamically, each button has an id set in
I have ordinary activity with Option Menu, which I created by this code: @Override
I have some PHP code which runs a loop, spitting out a button and
I have php code on a page which generates a series of buttons, like
This is driving me insane now. I have a loop that creates buttons. Each
I have created a button which I want to expand/contract. I found a way
I have template in which a button is created with a link using css,
I have created a view in which there is a capture button. When i
i have a table which contains a bunch of dynamically created radio button lists,

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.