java.lang.StackOverflowError when pressing FX ComboBox on Android

前端 未结 1 1357
予麋鹿
予麋鹿 2020-12-04 03:41

When using JavaFXPorts on Android (Android 4.1.1 on Asus Transformer Prime TF201 tablet), a java.lang.StackOverflowError is thrown when pressing on a ComboBox (see below the

相关标签:
1条回答
  • 2020-12-04 04:33

    You can create the java.custom.properties file, and include in it this property:

    monocle.stackSize=128000
    

    You can override other system properties as well by including them with their new values.

    Put the file at the root of your classpath, e.g. in the folder src/android/resources of your project.

    You can find this FAQ here here and all the documentation for JavaFXPorts here.

    Check if this solves your exception.

    0 讨论(0)
提交回复
热议问题