减少BlackBerry中Horizo ntal Field Manager中2个按钮之间的空间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了减少BlackBerry中Horizo ntal Field Manager中2个按钮之间的空间相关的知识,希望对你有一定的参考价值。

在Blackberry中,我创建了一个水平字段管理器,并添加了一些小尺寸的按钮,以在屏幕底部显示工具栏。但我的问题是两个按钮之间的空间太大。

我必须减少2个按钮之间的空间,这样我才能设法在屏幕底部放置至少6个按钮。我正在使用BFmsg.setMargin(305,0,0,40)声明。

以下是我的代码:

BFcontacts = new ButtonField("Cnt")
    { 
      protected void paint(Graphics graphics) 
         {
        //Bitmap contactsbitmap = Bitmap.getBitmapResource("contacts.jpg");
             //graphics.drawBitmap(0, 0, contactsbitmap.getWidth(), contactsbitmap.getHeight(), contactsbitmap, 0, 0);
             graphics.setColor(Color.WHITE);
             graphics.drawText("Cnt",0,0);
         }
    };


    BFcontacts.setMargin(305,0,0,10);//vertical pos,0,0,horizontal pos
    HFM.add(BFcontacts);

    BFmsg = new ButtonField("Msgs")
    { 
      protected void paint(Graphics graphics) 
         {
        //Bitmap msgsbitmap = Bitmap.getBitmapResource("messages.jpg");
             //graphics.drawBitmap(0, 0, msgsbitmap.getWidth(), msgsbitmap.getHeight(), msgsbitmap, 0, 0);
             graphics.setColor(Color.WHITE);
             graphics.drawText("Msgs",0,0);
         }
    };


    BFmsg.setMargin(305,0,0,40);//vertical pos,0,0,horizontal pos : original
    HFM.add(BFmsg);

   add(HFM)
答案

如果您尝试使用自定义管理器,您可以按照您的选择放置内容

创建此类的对象并向其添加项目

class BottomManager extends Manager
     {
         BottomManager()
         {
             super(Manager.NO_VERTICAL_SCROLL);
         }
         protected void sublayout(int width, int height) 
         {
             Field field = getField(0);
             layoutChild(field,Display.getWidth(), Display.getHeight());
             setPositionChild(field,0,0);

             field = getField(1);
             layoutChild(field,Display.getWidth(), Display.getHeight());
             setPositionChild(field,10+getField(0).getWidth(),0);

             field = getField(2);
             layoutChild(field,Display.getWidth(), Display.getHeight());
             setPositionChild(field,10+getField(1).getWidth(),0);

             field = getField(3);
             layoutChild(field,Display.getWidth(), Display.getHeight());
             setPositionChild(field,getField(2).getWidth()+10,0);

             setExtent(Display.getWidth(), 40);
         }
     }
另一答案

setMargin(305,0,0,40)// = TOP,RIGHT,BOTTOM,LEFT

边距相对于指定值的最近对象。

因此,简单地将左值从40减小到更小的值应允许您在水平场中放置更多对象。

可能你会想要(Display.getWidth() - (button.getWidth()* numButtons))/ numButtons + 1来计算甚至左边距。

另一答案

我不确定我是否完全理解你的问题。但是如果你把所有按钮都放在HorizontalFieldManager中,它们都会尝试适合一行,现在你可以为你的HorizontalFieldManager设置边距,以显示在底部或某个x y位置。然后将这个Manager添加到你的HFM

以上是关于减少BlackBerry中Horizo ntal Field Manager中2个按钮之间的空间的主要内容,如果未能解决你的问题,请参考以下文章

在屏幕顶部使用 .horizo​​ntal ScrollArea?

collectionView 中的 Horizo​​ntal ScrollView 功能松散

HTML jQuery Horizo​​ntal Accordion

FragmentTabHost Horizo​​ntal Scrollview + Swipe Android

难以使用外部指标配置 Horizo​​ntal Pod Autoscaler

Django filter_horizo ntal过滤