代号树组件,崩溃方法空指针异常

时间:2017-05-04 16:12:29

标签: codenameone

如何在树组件中使用CollapsePath代号为

使用使用collapsePath的Tree组件导致空指针异常,因为container = this ....如何解决这个问题.. 我将参数指定为父,子,孩子的字符串obj 你能指定如何使用collapsePath和expandPath 我尝试过使用expandPath和collapsePath,但都导致了同样的问题

Tree dt = new Tree(new StringArrayTreeModel()); dt.collapsePath("颜色""红色"" DF"" GF&#34);

1 个答案:

答案 0 :(得分:0)

这种情况的正确之处是:

    Form current = new Form("Tree Test", new BorderLayout());
    Tree t = new Tree();

    current.add(BorderLayout.CENTER, t);
    current.addShowListener(e -> t.expandPath(null, "Colors"));
    current.show();

但是,当前版本中存在与空根参数相关的错误,应在下周五(2017年5月12日)即将发布的更新中修复。