Hi all,
I've got a PopupScreen that uses a LocationProvider to get a GPS position and that displays acquire state.
But there is an IllegalStateException when trying to close it in the
Code:
public void locationUpdated(LocationProvider provider, Location location)
event invoked by my LocationProvider. I already tried with the
Code:
synchronized(UIApplication.getEventLock()) {
this.close();
} and
Code:
synchronized(this) {
this.close();
} in both popup screen and a method inside another component but it changes nothing at all

. If anyone already saw this issue or have an idea about how to resolve this, it would be very helpfull for me.
Thanks in advance