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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:06:57+00:00 2026-05-23T03:06:57+00:00

I have a HorizontalFieldManager with two buttons inside it. The buttons need to be

  • 0

I have a HorizontalFieldManager with two buttons inside it. The buttons need to be placed on the far left and the far right of the screen, respectively. I know HorizontalFieldManager only puts them left-to-right, so i have to extend them.

Here is what I did, however it yields no fruit. The buttons do appear, but too small and with no text on them (Which I already set).

Here is my layout code.

protected void sublayout(int width, int height) {
    setPositionChild(getField(0), 0, 0);        

    int fieldZeroWidth   = Max(getField(0).getContentWidth(),getField(0).getPreferredWidth());
    int fieldZeroHeight  = Max(getField(0).getContentHeight(),getField(0).getPreferredHeight());
    layoutChild(getField(0), 
            fieldZeroWidth, 
            fieldZeroHeight);
    int fieldOneWidth = Max(getField(1).getContentWidth(),getField(1).getPreferredWidth());
    setPositionChild(getField(1), 
            Display.getWidth() - fieldOneWidth,
            0);

    int fieldOneHeight = Max(getField(1).getPreferredHeight(),getField(1).getContentHeight());
    layoutChild(getField(1), 
            fieldOneWidth, 
            fieldOneHeight
            );

    setExtent(Display.getWidth(), Max(getPreferredHeight(),fieldOneHeight,fieldZeroHeight));
}

After I create this custom manager, I add it at the bottom with setStatus() function.

I want the two buttons to appear on the opposite sides (which they do), however in the right size with their text displayed.

Thanks
The Max functions just return the biggest between the arguments, obviously.

  • 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-23T03:06:58+00:00Added an answer on May 23, 2026 at 3:06 am

    If u want to place the two field in the corners of the HorizontalFieldManager use this following code:

    import net.rim.device.api.ui.*;
    
    /**
     * Custom class to place the Fields on two corners of the screen Horizontally
     */
    public class JustifiedHorizontalFieldManager extends Manager
    {
            private static final int SYSTEM_STYLE_SHIFT = 32;
    
        public Field _leftField;
        public Field _rightField;
    
        private boolean _giveLeftFieldPriority;
    
        public JustifiedHorizontalFieldManager( Field leftField, Field rightField, boolean giveLeftFieldPriority )
        {
            this( leftField, rightField, giveLeftFieldPriority, Field.USE_ALL_WIDTH );
        }
    
        public JustifiedHorizontalFieldManager( Field leftField, Field rightField, boolean giveLeftFieldPriority, long style )
        {
            super( style );
    
            _leftField = leftField;
            _rightField = rightField;
    
            add( _leftField );
            add( _rightField );
    
            _giveLeftFieldPriority = giveLeftFieldPriority;
        }
    
        public JustifiedHorizontalFieldManager( boolean giveLeftFieldPriority, long style )
        {
            super( style );
            _giveLeftFieldPriority = giveLeftFieldPriority;
        }
    
        public void addLeftField( Field field )
        {
            if( _leftField != null ) {
                throw new IllegalStateException();
            }
            _leftField = field;
            add( _leftField );
        }
    
        public void addRightField( Field field )
        {
            if( _rightField != null ) {
                throw new IllegalStateException();
            }
            _rightField = field;
            add( _rightField );
        }
    
        public int getPreferredWidth()
        {
            return _leftField.getPreferredWidth() + _rightField.getPreferredWidth();
        }
    
        public int getPreferredHeight()
        {
            return Math.max( _leftField.getPreferredHeight(), _rightField.getPreferredHeight() );
        }
    
        protected void sublayout( int width, int height )
        {
            Field firstField;
            Field secondField;
            if( _giveLeftFieldPriority ) {
                firstField = _leftField;
                secondField = _rightField;
            } else {
                firstField = _rightField;
                secondField = _leftField;
            }
    
            int maxHeight = 0;
    
            int availableWidth = width;
            availableWidth -= _leftField.getMarginLeft();
            availableWidth -= Math.max( _leftField.getMarginRight(), _rightField.getMarginLeft() );
            availableWidth -= _rightField.getMarginRight();
    
            layoutChild( firstField, availableWidth, height - firstField.getMarginTop() - firstField.getMarginBottom() );
            maxHeight = Math.max( maxHeight, firstField.getMarginTop() + firstField.getHeight() + firstField.getMarginBottom() );
            availableWidth -= firstField.getWidth();
    
            layoutChild( secondField, availableWidth, height - secondField.getMarginTop() - secondField.getMarginBottom() );
            maxHeight = Math.max( maxHeight, secondField.getMarginTop() + secondField.getHeight() + secondField.getMarginBottom() );
            availableWidth -= secondField.getWidth();
    
            if( !isStyle( Field.USE_ALL_HEIGHT ) ) {
                height = maxHeight;
            }
            if( !isStyle( Field.USE_ALL_WIDTH ) ) {
                width -= availableWidth;
            }
    
            setPositionChild( _leftField, _leftField.getMarginLeft(), getFieldY( _leftField, height ) );
            setPositionChild( _rightField, width - _rightField.getWidth() - _rightField.getMarginRight(), getFieldY( _rightField, height ) );
    
            setExtent( width, height );
        }
    
        private int getFieldY( Field field, int height )
        {
            switch( (int)( ( field.getStyle() & FIELD_VALIGN_MASK ) >> SYSTEM_STYLE_SHIFT ) ) {
                case (int)( FIELD_BOTTOM >> SYSTEM_STYLE_SHIFT ):
                    return height - field.getHeight() - field.getMarginBottom();
                case (int)( FIELD_VCENTER >> SYSTEM_STYLE_SHIFT ):
                    return field.getMarginTop() + ( height - field.getMarginTop() - field.getHeight() - field.getMarginBottom() ) / 2;
                default:
                    return field.getMarginTop();
            }
        }
    
    
        public Field getLeftField()
        {
            return _leftField;
        }
    
        public Field getRightField()
        {
            return _rightField;
        }
    
        public void replace( Field oldField, Field newField )
        {
            if( oldField == newField ) {
                // Nothing to do
                return;
            }
    
            if( oldField == _leftField ) {
                _leftField = newField;
            } else if( oldField == _rightField ) {
                _rightField = newField;
            }
            add( newField );
            delete( oldField );
        }
    
    
    
    }    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to layout two buttons side by side and have multiple rows
Have searched the database but need to specifically sum(of hours flown or days off)in
I made a popup screen in which there is an EditField, and two ButtonField
I am trying to have a gradient effect in a horizontalFieldManager through a function.
Have I understod the following right? font-family:sans-serif; Above will result in the default sans-serif
Have just started using Google Chrome , and noticed in parts of our site,
Have you ever seen any of there error messages? -- SQL Server 2000 Could
Have you guys had any experiences (positive or negative) by placing your source code/solution
Have just started using Visual Studio Professional's built-in unit testing features, which as I
Have you used VS.NET Architect Edition's Application and System diagrams to start designing a

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.