Я пытаюсь иметь полноэкранный интерфейс с заголовком исправления (менеджер с некоторыми полями) и прокручиваемым содержимым (список настраиваемых полей). Идея состоит в том, чтобы эмулировать некий прокручиваемый список.
Для этого я создал собственный VerticalFieldManager, который принимает maxHeight (высота экрана - высота заголовка).
У меня возникли следующие проблемы:
- Стрелки прокрутки не отображаются (никогда)
- В OS 4.7 (Storm) я могу прокрутить ниже, чем последний элемент, пока на моем экране не останется ничего, кроме заголовка.
Мой код нужно скомпилировать с JDE 4.2.1 и 4.7 и запустить на Pearl и Storm. (в худшем случае у меня может быть две версии этого класса)
Я подозреваю, что эти две проблемы связаны. Я, наверное, что-то не так делаю. Я посмотрел несколько примеров / форум и всегда находил подобное решение / код.
Ребята, вы можете сказать мне, что я сделал не так?
/**
* custom class, so we can set a max height (to keep the header visible)
*/
class myVerticalFieldManager extends VerticalFieldManager{
private int maxHeight = 0;
myVerticalFieldManager(int _maxHeight){
super(
//this provoc an "empty scrollable zone" on Storm
// but if you don't put it, on other OS, the vertical manager does not scroll at all.
Manager.VERTICAL_SCROLL
| Manager.VERTICAL_SCROLLBAR
);
maxHeight = _maxHeight;
}
protected void sublayout(int width, int height){
super.sublayout(width, getPreferredHeight());
setExtent(width, getPreferredHeight());
}
public int getPreferredWidth() {
return Graphics.getScreenWidth();
}
/**
* allow the manager to use all the given height. (vs auto Height)
*/
public boolean forceMaxHeight = false;
public int getPreferredHeight() {
if (forceMaxHeight) return maxHeight;
int m = super.getPreferredHeight();
if (m > maxHeight) m = maxHeight;
return m;
}
////////////////////////////////////////////////////////////////////////////
protected boolean isUpArrowShown(){
//TODO: does not seem to work (4.2.1 emulator & 4.5 device). (called with good return value but the arrows are not painted)
int i = getFieldWithFocusIndex();
//Trace("isUpArrowShown " + i);
return i > 0;
// note: algo not correct, cause the up arrow will be visible event when no field are hidden.
// but not so bad, so the user "know" that he can go up.
}
protected boolean isDownArrowShown(){
int i = getFieldWithFocusIndex();
return i < getFieldCount();
}
////////////////////////////////////////////////////////////////////////////
// note : since 4.6 you can use
// http://www.blackberry.com/developers/docs/4.6.0api/net/rim/device/api/ui/decor/Background.html
public int myBackgroundColor = 0xffffff;
protected void paint(Graphics g){
g.setBackgroundColor(myBackgroundColor);
// Clears the entire graphic area to the current background
g.clear();
super.paint(g);
}
}
любая помощь приветствуется.