我有一个屏幕,其中有一个listFeild和超出它的按钮..我想在屏幕底部有一个位图横幅,但在向下滚动后实际上不在底部..显示在底部不受列表字段大小的影响
答案 0 :(得分:0)
我做到了这一点..我为每个垂直管理器指定了一个高度,并且可以滚动,另一个不是
admanager = new VerticalFieldManager(VerticalFieldManager.NO_VERTICAL_SCROLL |VerticalFieldManager.NO_VERTICAL_SCROLLBAR |
Field.FIELD_HALIGN_MASK ){
protected void sublayout(int maxWidth, int maxHeight) {
// TODO Auto-generated method stub
super.sublayout(maxWidth, maxHeight);
}
};
otherStuff = new VerticalFieldManager(VerticalFieldManager.VERTICAL_SCROLL){
protected void sublayout(int maxWidth, int maxHeight) {
// TODO Auto-generated method stub
super.sublayout(maxWidth, maxHeight);
setExtent(maxWidth, Display.getHeight() - ad.getHeight());
}
};