[codenameone-discussions] Re: Question on iOS complex threading

2021-01-18 Thread Shai Almog
iOS is generally more sensitive to threading issues so this would make sense. But it's hard to help at this abstraction level. The only option is debugging this in xcode if you can't think of anything else. On Tuesday, January 19, 2021 at 2:10:08 AM UTC+2 javier...@gmail.com wrote: > Just forgo

[codenameone-discussions] Re: Question on iOS complex threading

2021-01-18 Thread Marisole Aromatherapy
Just forgot to add to my previous email that I also tried using synchronize together with wait/notify instead of an EasyThread, but saw the same issue Thanks Javier On Mon, 18 Jan 2021, 23:51 Marisole Aromatherapy, wrote: > I come here seeking help after having nearly given up on a threading >

[codenameone-discussions] Question on iOS complex threading

2021-01-18 Thread Marisole Aromatherapy
I come here seeking help after having nearly given up on a threading problem I face on iOS. Everything works well on Android, but on iOS, very randomly, the UI freezes and becomes unresponsive This happens while running some new code I made that uses intricate threading mechanisms At a high level

[codenameone-discussions] Re: showBack() from Form to InteractionDialog

2021-01-18 Thread 'P5music' via CodenameOne Discussions
Elegant solution: I created the class BackCommand that extends Command. BackCommand has a member that is a runnable that will be run from the @Override actionPerformed() method. A single instance of BackCommand is assigned to the form (and the toolbar), it does not change. The various dialogs th

Re: [codenameone-discussions] Re: RAD Chat Room Verify Error: ChatRoomView overrides final method AbstractEntityView.bind

2021-01-18 Thread Steve Hannah
Thanks for reporting this. I've updated the RADChatRoom library in CodenameOneLibs so it should be available in the control center soon. Steve On Fri, Jan 15, 2021 at 10:39 PM Shai Almog wrote: > Thanks, we'll check. > > On Friday, January 15, 2021 at 11:11:05 PM UTC+2 davidwaf wrote: > >> Ok

Re: [codenameone-discussions] Re: Broken behavior on autocompletetextcompoment

2021-01-18 Thread CodenameOne Discussions
Please file an issue in the issue tracker with a test case that will allow me to reproduce this issue. It isn't happening in any of my current test cases. Steve -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from

[codenameone-discussions] Re: showBack() from Form to InteractionDialog

2021-01-18 Thread 'P5music' via CodenameOne Discussions
If nothing can be done for the strange releasing of the CommandDialog's latch [but something strange is happening because I cannot debug that point (there with a long delay)] I think the workaround I devised is acceptable: The method that opens the CommandDialogs will not restore the back comma