Blackberry 如何使用horizontalfield在屏幕上居中放置标签 我想在屏幕中部、垂直和水平上放置一个徽标和一个文本域。实现这一目标的最佳方式是什么

Blackberry 如何使用horizontalfield在屏幕上居中放置标签 我想在屏幕中部、垂直和水平上放置一个徽标和一个文本域。实现这一目标的最佳方式是什么,blackberry,java-me,Blackberry,Java Me,到目前为止,我一直在努力解决这个问题 public upd8rMainScreen(){ Bitmap logoBitmap = Bitmap.getBitmapResource("upd8rLOGO.png"); bitmapField = new BitmapField(logoBitmap, Field.FIELD_VCENTER); labelfield = new LabelField("Tap Your Phone Onto The Reader To Ac

到目前为止,我一直在努力解决这个问题

public upd8rMainScreen(){

    Bitmap logoBitmap = Bitmap.getBitmapResource("upd8rLOGO.png");
    bitmapField = new BitmapField(logoBitmap, Field.FIELD_VCENTER);
    labelfield = new LabelField("Tap Your Phone Onto The Reader To Activate",Field.FIELD_VCENTER);


    topHfm = new HorizontalFieldManager(Manager.VERTICAL_SCROLL);
    middleHfm = new HorizontalFieldManager(Manager.VERTICAL_SCROLL);

    vfm = new VerticalFieldManager();
    topHfm.add(bitmapField);
    middleHfm.add(labelfield);

    vfm.add(topHfm);
    vfm.add(middleHfm);
    add(vfm);

}
您可以尝试重新设置垂直字段管理器的边距,如下所示:

topHfm = new HorizontalFieldManager(Manager.FIELD_HCENTER | Manager.FIELD_VCENTER);
midHfm = new HorizontalFieldManager(Manager.FIELD_HCENTER | Manager.FIELD_VCENTER);

topHfm.add(bitmapField);
midHfm.add(new LabelField("My Label", Manager.FIELD_HCENTER));

VerticalFieldManager vfm = new VerticalFieldManager(Manager.FIELD_VCENTER);
vfm.add(topHfm);
vfm.add(midHfm);

int screenHeight = Display.getHeight();
int screenWidth = Display.getWidth();

int totalContentHeight = topHfm.getPreferredHeight()+ midHfm.getPreferredHeight();
int maxContentWidth = (topHfm.getPreferredWidth()>midHfm.getPreferredWidth()) ? topHfm.getPreferredWidth() : midHfm.getPreferredWidth() ;

int marginTop = (screenHeight>totalContentHeight)? (screenHeight - totalContentHeight) / 2 : 0;
int marginLeft = (screenWidth>maxContentWidth)? (screenWidth - maxContentWidth ) / 2 : 0;

vfm.setMargin(marginTop, 0, 0, marginLeft);

add(vfm);
我不认为这是做这件事的“最佳方法”,但我希望它对您的情况有效。

您可以尝试重新设置垂直字段管理器的边距,如下所示:

topHfm = new HorizontalFieldManager(Manager.FIELD_HCENTER | Manager.FIELD_VCENTER);
midHfm = new HorizontalFieldManager(Manager.FIELD_HCENTER | Manager.FIELD_VCENTER);

topHfm.add(bitmapField);
midHfm.add(new LabelField("My Label", Manager.FIELD_HCENTER));

VerticalFieldManager vfm = new VerticalFieldManager(Manager.FIELD_VCENTER);
vfm.add(topHfm);
vfm.add(midHfm);

int screenHeight = Display.getHeight();
int screenWidth = Display.getWidth();

int totalContentHeight = topHfm.getPreferredHeight()+ midHfm.getPreferredHeight();
int maxContentWidth = (topHfm.getPreferredWidth()>midHfm.getPreferredWidth()) ? topHfm.getPreferredWidth() : midHfm.getPreferredWidth() ;

int marginTop = (screenHeight>totalContentHeight)? (screenHeight - totalContentHeight) / 2 : 0;
int marginLeft = (screenWidth>maxContentWidth)? (screenWidth - maxContentWidth ) / 2 : 0;

vfm.setMargin(marginTop, 0, 0, marginLeft);

add(vfm);

我不认为这是做这件事的“最佳方法”,但我希望它能对你的情况起作用。

它能帮助你尝试一下吗

Bitmap logoBitmap = Bitmap.getBitmapResource("basket.png");
        bitmapField = new BitmapField(logoBitmap,Field.FIELD_HCENTER);
        labelfield = new LabelField("Tap Your Phone Onto ",Field.FIELD_HCENTER);
//     
        VerticalFieldManager vrt=new VerticalFieldManager(USE_ALL_WIDTH)
        {
            protected void sublayout(int maxWidth, int maxHeight) {

                super.sublayout(Display.getWidth(),Display.getHeight());
                setExtent(Display.getWidth(),Display.getHeight());
            }
        };
        Font f=labelfield.getFont();
        int hight1=f.getAdvance(labelfield.getText());
        int k=labelfield.getPreferredHeight();

        int number=hight1/Display.getWidth()+1;
        int hight2=logoBitmap.getHeight();
        int padding=(Display.getHeight()-((number*k)+hight2))/2;
        if(padding>0){
            bitmapField.setPadding(padding,0,0,0);
        }

        vrt.add(bitmapField);
        vrt.add(labelfield);
图像显示如下


这对你有帮助吗

Bitmap logoBitmap = Bitmap.getBitmapResource("basket.png");
        bitmapField = new BitmapField(logoBitmap,Field.FIELD_HCENTER);
        labelfield = new LabelField("Tap Your Phone Onto ",Field.FIELD_HCENTER);
//     
        VerticalFieldManager vrt=new VerticalFieldManager(USE_ALL_WIDTH)
        {
            protected void sublayout(int maxWidth, int maxHeight) {

                super.sublayout(Display.getWidth(),Display.getHeight());
                setExtent(Display.getWidth(),Display.getHeight());
            }
        };
        Font f=labelfield.getFont();
        int hight1=f.getAdvance(labelfield.getText());
        int k=labelfield.getPreferredHeight();

        int number=hight1/Display.getWidth()+1;
        int hight2=logoBitmap.getHeight();
        int padding=(Display.getHeight()-((number*k)+hight2))/2;
        if(padding>0){
            bitmapField.setPadding(padding,0,0,0);
        }

        vrt.add(bitmapField);
        vrt.add(labelfield);
图像显示如下

尝试将样式位
Manager.FIELD\u HCENTER
Manager.VERTICAL\u SCROLL
样式位一起添加,即使用
新建HorizontalFieldManager(Manager.VERTICAL\u SCROLL | Manager.FIELD\u HCENTER)
。查看我今天上午早些时候发布的答案,这可能会对您有所帮助。请尝试添加样式位
Manager.FIELD\u HCENTER
以及
Manager.VERTICAL\u SCROLL
style位,即使用
new HorizontalFieldManager(Manager.VERTICAL\u SCROLL | Manager.FIELD\u HCENTER)
。请看我今天早上早些时候发布的答案,这可能会对您有所帮助。