One thing I see is that you are calling setImage() in a TaskListener. You should wrap that in a TaskAdapter since you are calling into the UI from a background thread.
If you mean the line at around 114 in the source, the tasklistener is wrapped in a TaskAdaptor at line 148 with new ClientTask().execute(new TaskAdapter<String>(taskListener)); Regards -- View this message in context: http://apache-pivot-users.399431.n3.nabble.com/Binding-Issues-converting-from-1-5-to-2-0-tp3235662p3235758.html Sent from the Apache Pivot - Users mailing list archive at Nabble.com.
