Www.seasite.niu.edu

A major difference between traditional Java GUI programming and Android GUI apps is this: only the Thread that created an Android GUI widget is allowed to update it (for example, do a setText()). Another way to say it: only code that runs in the same thread that created the widgets can update them. In short, the main thread of an Activity (sometimes called the UI Thread) is in charge of both ... ................
................