Looking at google sunflower sample I see that they...
# android
a
Looking at google sunflower sample I see that they use for insert to be on nonUI thread someting called
runOnIoThread
which is a fun for
Executors.newSingleThreadExecutor
. What would be the best way to do this operations on another thread? I saw in some java samples that they use
asynctask
stackoverflow 1