Hi i am developing an android application in which i need to delete all messages from inbox. I followed the method of fetching single id and deleting the corresponding message. this works fine when messages in inbox are less. If more number of messages are there it takes a long time. How does In-build messaging application and GoSMS deletes even 4000 and more messages in few seconds when "Delete All" option is selected.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I would assume that all the items are removed from the adapter, and placed in a separate thread to delete. To the user all the items are no longer there, but the background thread will still be running. |
|||
|