java - When I use a Bound Service in Android, does it run in the background, on its own thread or on the main UI thread? -
i searching through dictionary in app, , because may takes time, , involves searching through 170,000+ items, , inserting 100 items database, etc..., trying make not hog main thread. have read conflicting things bound services. run on own thread, or have manually in service? basically, have run in background? thought whole point of bound service. appreciated!
you can use asynctask class or start new thread if don't want on ui thread
Comments
Post a Comment