| java Programming Glossary: filesystementryContentProvider insert() always runs on UI thread? http://stackoverflow.com/questions/11604914/contentprovider-insert-always-runs-on-ui-thread  @Override public void onFolderContentsResponse final List FilesystemEntry contents do something with contents All still good. Even if.. onFolderContentsResponse is called and passed the list of FilesystemEntry's that was received from the server. I only really say all this.. @Override public void onFolderContentsResponse final List FilesystemEntry contents insertContentsIntoDB contents  And the insertContentsIntoDB.. 
 |