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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:03:31+00:00 2026-05-28T03:03:31+00:00

I want to layout X buttons. At the start, Y items can be in

  • 0

I want to layout X buttons.

At the start, Y items can be in a row.
After the first row is laid out, only Y – 1 items can appear in the next row and so on.

So say I have 13 buttons and the first row can have up to 6 buttons, I would need 3 rows. The first would have 6 buttons the second 5 buttons, and the 3ed 2 buttons.

Thanks

What algorithm could be to do:

int getRowCount(int startCols, int numItems);

I know how to do it with MOD if the number of columns is constant but how would you do it if the maximum number of columns decreases with each row?

  • 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-28T03:03:31+00:00Added an answer on May 28, 2026 at 3:03 am

    In situations like this, I try to translate the english into code.

    int getRowCount(int startCols, int numItems) {
      int currentCols = startCols;
      int numRows = 0;
    
      while (numItems > 0) {      // as long as items remain
        numRows += 1;             // add another row
        numItems -= currentCols;  // reduce the remaining items by the current number of columns
        currentCols--;            // reduce the number of columns by one
      }
    }
    

    It’s always best to run through the scenario with some edge cases. Ask yourself questions like:

    What answer do I get if numItems is 0?
    What answer do I get if startCols is 0?
    What answer do I get if numItems == startCols?

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

Sidebar

Related Questions

I want to align two buttons with a linear layout, one on the left,
I have many buttons in my layout and they work well. I want to
First let me tell you what I want to achieve. I want a layout
I want following layout in my app. A button at top, second botton at
I want to create a Button otherthan creating it from xml layout.i want to
This is possible to disabled layout for few seconds? I want to layout shows
I want to set layout something like What i thought that i will have
I have an XML layout and want to add my own custom SurfaceView to
I want to create a layout for an Android app that has a numeric
I want to create such layout: +-----------container-----------+ | +-----fixed-height-div-------+| | +-------fixed-height-div-----+| | +-fill-height-scrollable-div-+| | +-fixed-height-bottom-div-+| +---------end-container-------+ The problem

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.