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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:17:19+00:00 2026-05-20T08:17:19+00:00

Is it possible to add gui components to blackberry screen beginning from the bottom

  • 0

Is it possible to add gui components to blackberry screen beginning from the bottom instead of the top ?

Thanks

  • 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-20T08:17:20+00:00Added an answer on May 20, 2026 at 8:17 am

    A quick response would be no but let me explain why and suggest afew work arounds;

    Screens don’t actually handle the laying out of fields onto themselves, to do this they delcare a delegate manager which can be any type of manager, vertical, horizontal etc. The problem is all managers begin painting themselves from the top left. For a manager to paint fields starting from the bottom it would have to know exaclty where the bottom is located and add components up rather than down which goes against all the low level code inside the manager class. You can read more on managers in the BlackBerry API documentation.

    You could still achieve an effect similar to this though by tweaking how you add fields and playing with field styles. For example consider this code:

      add(new LabelField("field 1"));
      add(new LabelField("field 2"));
    

    This would give us the results;

     field 1
     field 2
    

    because field 1 is drawn then field 2 below it. However if we were always to insert fields at the begining of our manager e.g. position 0 like so:

       insert(new LabelField("field 1", FIELD_BOTTOM), 0);
       insert(new LabelField("field 2", FIELD_BOTTOM), 0);
    

    We would get the results;

    field 2
    field 1
    

    Which is the results you’d expect from a screen described in your question.

    I’m not really sure how you’d get the fields to paint to the bottom of a screen though, you could try researching the “position relative bottom” styles but I’m honestly unsure.

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

Sidebar

Related Questions

It is possible to add and remove elements from an enum in Java at
Is it possible to add new GUI elements into a Qt program using QtScript?
Is it possible to add a custom tab to a project properties page in
Is it possible to add attributes at runtime or to change the value of
Is it possible to add an image overlay to a google map that scales
Is it possible to add custom command-line arguments to an Eclipse .app folder? In
Is it possible to add a jQuery function so that a click in a
Is it possible to add a metadata-like description or comments to a table in
Is it possible to add checkboxes to the WPF TreeView object? I'd like to
Is it possible to add rows to a dataset?

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.