在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)
答案 0 :(得分:2)
setMargin(305,0,0,40)// = TOP,RIGHT,BOTTOM,LEFT
边距相对于指定值的最近对象。
因此,简单地将左侧值从40减小到更小的值可以让您在水平场中放置更多对象。
可能你会想要(Display.getWidth() - (button.getWidth()* numButtons))/ numButtons + 1来计算甚至左边距。
答案 1 :(得分:1)
你试过使用自定义管理器你可以像你这样选择放置内容
创建此类的对象并向其添加项目
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);
}
}
答案 2 :(得分:0)
我不确定我是否完全理解你的问题。但是如果你将所有按钮都放在HorizontalFieldManager
中,那么现在你可以设置为HorizontalFieldManager
显示在底部或某个x y位置的余量。然后将此Manager
添加到您的HFM