In Android it causes HUGE issues if you don’t put all of your UI changes on the UI Thread. Does it matter as much in Swing? I’ve never used recalled the UIThread before programming for Android. Are you suppose to do UI changes on the UI Thread in Swing?
Share
Yes, it is necessary to use the Event Thread (UI Thread) in Java when performing actions on the UI.
See: The Event Dispatch Thread