减少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个按钮之间的空间的主要内容,如果未能解决你的问题,请参考以下文章
在屏幕顶部使用 .horizontal ScrollArea?
collectionView 中的 Horizontal ScrollView 功能松散
HTML jQuery Horizontal Accordion
FragmentTabHost Horizontal Scrollview + Swipe Android