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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T07:21:31+00:00 2026-06-05T07:21:31+00:00

my custom verticalfieldmanger public class Custom_TopField extends VerticalFieldManager { private static final int FIELD_HEIGHT

  • 0

my custom verticalfieldmanger

public class Custom_TopField extends VerticalFieldManager {
private static final int FIELD_HEIGHT = 70;
private LabelField maintitle;

private String _text;

Custom_TopField(int color, String text) {
    super(Manager.NO_VERTICAL_SCROLL);
    _text = text;
    Background background = BackgroundFactory.createSolidBackground(color);
    setBackground(background);
    maintitle = new LabelField(_text, Field.FIELD_VCENTER | Field.FIELD_HCENTER);
    Font font = Font.getDefault().derive(Font.BOLD, 35);
    maintitle.setFont(font);
    add(maintitle);
}

protected void sublayout(int width, int height) {
    width = Math.min(width, getPreferredWidth());
    height = Math.min(height, getPreferredHeight());
    setExtent(width, height);
}

public int getPreferredHeight() {
    return FIELD_HEIGHT;
}

public int getPreferredWidth() {
    return Display.getWidth();
}

public void paint(Graphics graphics) {
    int rectHeight = getPreferredHeight();
    int rectWidth = getPreferredWidth();    
    graphics.drawRect(0, 0, rectWidth, rectHeight);     
    super.paint(graphics);
}
}

Although i add(maintitle) but it did not come out middle of the verticalfield.

  • 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-05T07:21:33+00:00Added an answer on June 5, 2026 at 7:21 am

    You can try this:

    Add flags to constructor:

    super(Manager.NO_VERTICAL_SCROLL | Manager.USE_ALL_WIDTH);
    

    Also to field:

    maintitle = new LabelField(DrawStyle.HCENTER | Field.FIELD_HCENTER);
    

    This should center horizontally the field. You can try adding also the flags to center vertically, but very likely it won’t work, because VFM’s have issues with vertical scrolling. The rule is: to center horizontally, use a VerticalFieldManager, to center vertically, use a HorizontalFieldManager. This is how you can center in vertical:

        HorizontalFieldManager hfm = new HorizontalFieldManager(Manager.USE_ALL_HEIGHT);
        Field toCenter = new <Field>(DrawStyle.VCENTER | Field.FIELD_VCENTER );
        hfm.add(toCenter);
    

    You could theoretically work out a solution combining both approaches, and nesting one manager inside the other one.

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

Sidebar

Related Questions

custom view: public class MyView extends AbstractView { .... awesome stuff ... } controller:
I'm trying to create a custom dialog for blackberry... public class cusDialog extends Screen
My custom type is (no default constructor!): package com.XXX.common; public class Email implements Serializable
For custom rendering purposes, I've created a class (axialPanel.java) that extends JPanel and overrides
I have a custom class that I've written that extends ImageView (for Android Java).
This is my custom layout which was same as android linear layout public class
searchlist = new FileList(list_vector,ind,j);//a custom list field searchlist.setRowHeight(40); searchListManager = new VerticalFieldManager( Manager.VERTICAL_SCROLL |Manager.VERTICAL_SCROLLBAR)
Custom non-fatal exception derive from which class in asp.net 3.5?
Custom string format to xml help needed. Java and C#. [Node(X)][CHILD0(Y)][OBJECT1(A)][Key1(1)][Key2(2)] [Node(X)][CHILD0(Y)][OBJECT1(B)][Key1(1)][Key2(2)][Key3(3)] [Node(X)][CHILD0(Y)][OBJECT1(C)][Key1(4)] [Node(X)][CHILD0(Y)][OBJECT2(A)][Key1(1)][Key2(2)][Key3(3)]
My Custom Adapter that extends SimpleCursorAdapter for my ListFragment does not display the items

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.