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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:30:12+00:00 2026-05-12T22:30:12+00:00

I want to position my field at specified positions.

  • 0

I want to position my field at specified positions.

  • 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-12T22:30:12+00:00Added an answer on May 12, 2026 at 10:30 pm

    basically to set any field position amoung the manager, you shoud:

    1. override sublayout
      • set layoutChild for each field in manager
      • set setPositionChild for each field in manager
      • use setExtend to size manager properly

    removed dead ImageShack link

    Code of extanded manager:

    class CustomVerticalManager extends VerticalFieldManager {
     LabelField mText1 = new LabelField("top");
     LabelField mText2 = new LabelField("bottom");
    
     public CustomVerticalManager() {
      add(mText1);
      add(mText2);
     }
    
     public int getPreferredHeight() {
      return Display.getHeight();
     }
    
     public int getPreferredWidth() {
      return Display.getWidth();
     }
    
     protected void sublayout(int width, int height) {
      width = getPreferredWidth();
      height = getPreferredHeight();
    
      int fieldWidth = mText1.getPreferredWidth();
      int fieldHeight = mText1.getPreferredHeight();
      layoutChild(mText1, fieldWidth, fieldHeight);
      int xPos = (width - fieldWidth) >> 1;
      int yPos = 0;
      setPositionChild(mText1, xPos, yPos);
    
      fieldWidth = mText2.getPreferredWidth();
      fieldHeight = mText2.getPreferredHeight();
      layoutChild(mText2, fieldWidth, fieldHeight);
      xPos = (width - fieldWidth) >> 1;
      yPos = height - fieldHeight;
      setPositionChild(mText2, xPos, yPos);
      setExtent(width, height);
     }
    }
    

    Sample of use:

    class Scr extends MainScreen {
     CustomVerticalManager mManager = new CustomVerticalManager();
    
     public Scr() {
      add(mManager);
     }
    }
    

    See also
    Wireless – How to : Create a custom layout manager for a screen
    Blackberry – fields layout animation

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

Sidebar

Related Questions

I want to position .select-delete on top of the <input> text field. I did
I want to position a comments container relative to the post container . But
I want to position two ImageViews horizontally, but I am not able to get
I want to position a DIV 200 pixels to left of the center. I
I want to position four div s relative to another. I have a rectangle
I want to position an element in normal css relative to the element before
I want to position Dojo's Dijit Dialog relative to one of my html element.
I want to position two buttons away from one another in a TableRow.. but
I want to position a <div> (or a <table> ) element at the center
I want to position divs on top of one another. I have created 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.