I am working on an android project. I am displaing all the incoming,outgoing and missed calls.
I want to also add the sms sent and receive. How can I do that? Is there a library that displays all the sms from the android phone?
Appreciate for your help
There is no direct library. You have to use a content provider (opened using an URI) and fetch messages using it. Then create your own List with custom adapter and add SMS data into it.