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 7986891
In Process

The Archive Base Latest Questions

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

How would I go implementing a fixed aspect ratio View ? I’d like to

  • 0

How would I go implementing a fixed aspect ratio View? I’d like to have items with 1:1 aspect ratio in a GridView. I think it’s better to subclass the children than the GridView?

EDIT: I assume this needs to be done programmatically, that’s no problem. Also, I don’t want to limit the size, only the aspect ratio.

  • 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:59:02+00:00Added an answer on June 4, 2026 at 11:59 am

    I implemented FixedAspectRatioFrameLayout, so I can reuse it and have any hosted view be with fixed aspect ratio:

    public class FixedAspectRatioFrameLayout extends FrameLayout
    {
        private int mAspectRatioWidth;
        private int mAspectRatioHeight;
    
        public FixedAspectRatioFrameLayout(Context context)
        {
            super(context);
        }
    
        public FixedAspectRatioFrameLayout(Context context, AttributeSet attrs)
        {
            super(context, attrs);
    
            init(context, attrs);
        }
    
        public FixedAspectRatioFrameLayout(Context context, AttributeSet attrs, int defStyle)
        {
            super(context, attrs, defStyle);
    
            init(context, attrs);
        }
    
        private void init(Context context, AttributeSet attrs)
        {
            TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.FixedAspectRatioFrameLayout);
    
            mAspectRatioWidth = a.getInt(R.styleable.FixedAspectRatioFrameLayout_aspectRatioWidth, 4);
            mAspectRatioHeight = a.getInt(R.styleable.FixedAspectRatioFrameLayout_aspectRatioHeight, 3);
    
            a.recycle();
        }
        // **overrides**
    
        @Override protected void onMeasure (int widthMeasureSpec, int heightMeasureSpec)
        {
            int originalWidth = MeasureSpec.getSize(widthMeasureSpec);
    
            int originalHeight = MeasureSpec.getSize(heightMeasureSpec);
    
            int calculatedHeight = originalWidth * mAspectRatioHeight / mAspectRatioWidth;
    
            int finalWidth, finalHeight;
    
            if (calculatedHeight > originalHeight)
            {
                finalWidth = originalHeight * mAspectRatioWidth / mAspectRatioHeight; 
                finalHeight = originalHeight;
            }
            else
            {
                finalWidth = originalWidth;
                finalHeight = calculatedHeight;
            }
    
            super.onMeasure(
                    MeasureSpec.makeMeasureSpec(finalWidth, MeasureSpec.EXACTLY), 
                    MeasureSpec.makeMeasureSpec(finalHeight, MeasureSpec.EXACTLY));
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How would you go about implementing private mail functionality such like Bebo/Facebook and other
I am implementing a logging function and I would like to keep track of
I am implementing a password reset function and would have the key I want
I'm implementing some code generators, i would like to know if there's any way
I have a fixed content in my text view inside a scroll view. When
Just a quick question about how you would go about implementing this. I want
What would be an easy way of implementing a console-based progress indicator for a
I am implementing a push notification service. I would need to create a database
I'm having some trouble implementing a fixed table header with CSS and jQuery, though
Just wondering how you would go about implementing something similar to stackoverflow'd related questions.

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.