2

我想生成VerticalFieldManager具有非零边距的 a ,所以我创建 a VerticalFieldManager,然后使用 vfm.setMargin(10, 10, 10, 10); 之后,将一些字段(buttonFieldObjectChoiceField)放入其中。

这似乎太简单了,对吧?但奇怪的事情发生了。当我专注于最后一个ObjectChoiceField并按空格键切换它的选择时,ObjectChoiceField消失了。

怎么可能?这里是demo代码,有大佬能找到bug吗?

final class HelloWorldScreen extends MainScreen{
  HelloWorldScreen() {
    // just a demo to show the strange thing
    String [] arr = {"a","b"};
    for(int i = 0; i < 10; i++){

        VerticalFieldManager vfm = new VerticalFieldManager(); // Field.USE_ALL_WIDTH
        vfm.setMargin(10, 10, 10, 10);
        ButtonField btn = new ButtonField(String.valueOf(i));
        ObjectChoiceField ch = new ObjectChoiceField(String.valueOf(i), arr);

        vfm.add(btn);
        vfm.add(ch);

        add(vfm);
    }
  }
}

编辑:所需 UI 边距的屏幕截图:

在此处输入图像描述

4

1 回答 1

1

这很奇怪。

为了那些不运行您的代码的人的利益,正在发生的事情是,当您单击对象选择字段时,整个屏幕会垂直滚动一点。每次垂直滚动后,屏幕将无法一直滚动到底部。经过多次这样的操作,最终该屏幕的大部分下部不再可访问。

我不知道为什么会这样。(对我来说看起来像一个黑莓错误)

我观察到的是,如果您拨打

    vfm.setMargin(10, 10, 10, 10);

问题消失了。

我可以建议您使用的解决方法吗

    vfm.setPadding(10, 10, 10, 10);

反而?

我知道边距填充不是一回事。但是,根据您的完整 UI 设计(我看不到),在这种情况下,设置 10 像素填充可能足以完成您想要做的事情。


更新:根据您所需 UI 的屏幕截图,我能够使用此解决方法生成它。同样,它不应该做这么多的工作,但这个额外的代码对我有用:

public class BugScreen extends MainScreen {

   private static final int BG_COLOR = Color.LIGHTGRAY;
   private static final int FG_COLOR = Color.WHITE;
   private static final int BORDER_LINE_COLOR = Color.GRAY;
   private static final int PAD = 10;

   public BugScreen() {
      super(MainScreen.VERTICAL_SCROLL | MainScreen.VERTICAL_SCROLLBAR);

      getMainManager().setBackground(BackgroundFactory.createSolidBackground(BG_COLOR));
      // this additional call ensures that when scrolling bounces, the area "behind"
      // the normal visible area is ALSO of BG_COLOR
      setBackground(BackgroundFactory.createSolidBackground(BG_COLOR));

      // this will establish a thin gray padding on the screen's left/right sides
      // NOTE: I seem to get drawing artifacts if I try to use this for ALL sides!
      getMainManager().setPadding(0, PAD, 0, PAD);

      String [] arr = {"a","b"};
      for(int i = 0; i < 10; i++){

         VerticalFieldManager vfm = new VerticalFieldManager(Field.USE_ALL_WIDTH) {
            public int getPreferredWidth() {
               return Display.getWidth() - 2 * PAD;
            }
            public void paint(Graphics graphics) {
               int oldColor = graphics.getColor();
               super.paint(graphics);
               graphics.setColor(BORDER_LINE_COLOR);
               // draw the (1-pixel wide) border size you would like.
               graphics.drawRect(0, 0, getPreferredWidth(), getHeight());
               graphics.setColor(oldColor);
            }
         };

         vfm.setBackground(BackgroundFactory.createSolidBackground(FG_COLOR));
         ButtonField btn = new ButtonField(String.valueOf(i));
         ObjectChoiceField ch = new ObjectChoiceField(String.valueOf(i), arr);

         vfm.add(btn);
         vfm.add(ch);

         // add a separator field to get thin gray margin between (vfm) fields         
         add(new MarginField());

         add(vfm);
      }

      // add one last margin field at the bottom
      add(new MarginField());
   }

   private class MarginField extends Field {
      public MarginField() {
         super(Field.USE_ALL_WIDTH);
      }
      public int getPreferredHeight() { return PAD; }
      protected void paint(Graphics g) {
         int oldColor = g.getColor();
         g.setColor(BG_COLOR);
         g.fillRect(0, 0, getWidth(), getPreferredHeight());
         g.setColor(oldColor);
      }
      protected void layout(int width, int height) {
         setExtent(width, getPreferredHeight());               
      }     
   }
}
于 2013-02-16T11:53:49.097 回答