开发者

How to set size of VerticalFieldManager on Blackberry

开发者 https://www.devze.com 2023-02-27 12:44 出处:网络
There is a ListField in VerticalFieldManager and I want to fix the height o开发者_运维问答f VerticalFieldManager. Because there is an endless blank area at the bottom of ListField.Try this one:

There is a ListField in VerticalFieldManager and I want to fix the height o开发者_运维问答f VerticalFieldManager. Because there is an endless blank area at the bottom of ListField.


Try this one:

public class FixedHeightVerticalFieldManager extends VerticalFieldManager {

    private int height;

    public FixedHeightVerticalFieldManager(int height) {
         super(VERTICAL_SCROLL | VERTICAL_SCROLLBAR);
         this.height = height;
    }

    protected void sublayout(int maxWidth, int maxHeight) {
        super.sublayout(maxWidth, height);
        setExtent(maxWidth, height);
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消