I am using a content observer for content://sms. I am writing all the messages to a text file in SD card. But the onChange() method in the content observer is called multiple times and the same message is written multiple times to the text file. How to avoid this? Also I want to know if having the content observer will slow down the phone.
I am using a content observer for content://sms . I am writing all the
Share
You need to override deliverSelfNotifications() to return true.