我只看到了几个与BlackBerry有关的问题,但我认为知识渊博的成员只是谦虚:)
问题是:我正在实施一个自定义管理器。除了滚动之外,一切都很棒(在我的情况下,它是水平的)。这是我的代码的一部分:
public class TemplateSelect extends Manager {
public static int THUMBNAIL_WIDTH = 150;
public static int THUMBNAIL_HEIGHT = 150;
private int width, height, lastX, sx;
public TemplateSelect(int w, int h) {
super(Manager.HORIZONTAL_SCROLL);
width = w;
height = h;
}
public int getPreferredWidth() {
return width;
}
public int getPreferredHeight() {
return height;
}
protected void sublayout(int width, int height) {
// Adding templates
int top = 0, left = 0, deltaLeft = 0;
for(int i = 0; i < getFieldCount(); i++) {
Template t = (Template) getField(i);
layoutChild(t, 0, 0);
setPositionChild(getField(i), deltaLeft + left, top);
if (left + THUMBNAIL_WIDTH > Display.getWidth()) {
left = 0;
if (top + THUMBNAIL_HEIGHT * 2 > getPreferredHeight()) {
deltaLeft += getPreferredHeight();
top = 0;
} else {
top += THUMBNAIL_HEIGHT;
}
} else {
left += THUMBNAIL_WIDTH;
}
}
setExtent(getPreferredWidth(), getPreferredHeight());
}
protected boolean touchEvent(TouchEvent message) {
if (message.getEvent() == TouchEvent.DOWN) {
// Save down click location
lastX = message.getGlobalX(1);
sx = lastX;
} else
if (message.getEvent() == TouchEvent.UP) {
Template t = (Template) getFieldWithFocus();
int delta;
if (lastX - message.getGlobalX(1) > 0) {
delta = t.getX() + getPreferredWidth();
} else {
delta = t.getX() - getPreferredWidth();
}
Template next = (Template) getField(getFieldAtLocation(delta, t.getY()));
if (next != null) {
next.setFocus();
} else {
Dialog.inform("NULL");
}
} else
if (message.getEvent() == TouchEvent.MOVE) {
lastX = sx;
setHorizontalScroll(getHorizontalScroll() + sx - message.getGlobalX(1), true);
System.out.println(getHorizontalScroll());
sx = message.getX(1);
}
return false;
}
}
我正在调用setHorizontalScroll,之后立即检查其值,但它仍然等于零(并且不会发生滚动。
我没有考虑过什么?可能是什么问题?
提前感谢您的帮助。
答案 0 :(得分:1)
我通过在页面上分解我的组件并将它们放入HorizontalFieldManager
答案 1 :(得分:0)
setHorizontalScroll(getHorizontalScroll() + sx - message.getGlobalX(1), true);
true的第二个参数激活动画。因此它不能立即获得预期的滚动量。
如果您为OS 6和7编写代码,我建议让标准滚动行为并使用预处理器激活touchEvent代码