Gluon Mobile для Android = зависит от устройства StackOverflowError - PullRequest
0 голосов
/ 19 мая 2018

Я успешно перенес приложение javafx с настольного компьютера на iOS, и теперь я работаю над портом Android.

Я использую плагин jfxmobile: 1.3.10

Один измои взгляды дают переполнение стека в виртуальном устройстве, но не в другом.

Есть ли способ указать при создании приложения для Android минимальный размер стека?Как обычно решаются проблемы такого рода?

java.lang.StackOverflowError
        at javafx.scene.Node.getLocalBounds(Node.java:3478)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.updateCachedBounds(Parent.java:1588)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1527)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078)
        at javafx.scene.Node.updateGeomBounds(Node.java:3577)
        at javafx.scene.Node.getGeomBounds(Node.java:3530)
        at javafx.scene.Node.getLocalBounds(Node.java:3478)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1516)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078)
        at javafx.scene.Node.updateGeomBounds(Node.java:3577)
        at javafx.scene.Node.getGeomBounds(Node.java:3530)
        at javafx.scene.Node.getLocalBounds(Node.java:3478)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.updateCachedBounds(Parent.java:1588)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1527)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078)
        at javafx.scene.Node.updateGeomBounds(Node.java:3577)
        at javafx.scene.Node.getGeomBounds(Node.java:3530)
        at javafx.scene.Node.getLocalBounds(Node.java:3478)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.updateCachedBounds(Parent.java:1588)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1527)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.Node.updateGeomBounds(Node.java:3577)
        at javafx.scene.Node.getGeomBounds(Node.java:3530)
        at javafx.scene.Node.getLocalBounds(Node.java:3478)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1516)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078)
        at javafx.scene.Node.updateGeomBounds(Node.java:3577)
        at javafx.scene.Node.getGeomBounds(Node.java:3530)
        at javafx.scene.Node.computeLocalBounds(Node.java:3593)
        at javafx.scene.Node.updateLocalBounds(Node.java:3623)
        at javafx.scene.Node.getLocalBounds(Node.java:3484)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.updateCachedBounds(Parent.java:1588)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1527)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078)
        at javafx.scene.Node.updateGeomBounds(Node.java:3577)
        at javafx.scene.Node.getGeomBounds(Node.java:3530)
        at javafx.scene.Node.getLocalBounds(Node.java:3478)
        at javafx.scene.Node.updateTxBounds(Node.java:3641)
        at javafx.scene.Node.getTransformedBounds(Node.java:3424)
        at javafx.scene.Parent.getChildTransformedBounds(Parent.java:1724)
        at javafx.scene.Parent.recomputeBounds(Parent.java:1516)
        at javafx.scene.Parent.impl_computeGeomBounds(Parent.java:1380)
        at javafx.scene.layout.Region.impl_computeGeomBounds(Region.java:3078)
        at javafx.scene.Nod
...