The Mudcat Café TM
Thread #156862   Message #3707890
Posted By: GUEST,Jon
09-May-15 - 09:02 PM
Thread Name: Declutter (x-hoarders), Fitness Apr-June 2015
Subject: RE: Declutter (x-hoarders), Fitness Apr-June 2015
Oh and on the learning to write bit. Android code is mostly Java (there are ways beyond my ability to compile native code for speed but it's rarely needed).

From my own VERY LIMITED dabbling, I think the hardest bit I've encountered to get used to is its sort of asynchronous nature. You mustn't and in some cases can not tie up the UI. If a job (eg. my print program which was once on the play store, which does a few network tasks), you need to put things out to another thread or use AsyncTask. It's sort of start something going and wait to get notified it's happened rather than simple "straight line" and I find that can be difficult to get my own head round at times.