Saturday 30 November 2013

Retrieve sms messages on a particular date in Android

    In order to get sms messages received on a particular date in an Android application you need to setup a filter which selects messages on the basis of date comparison as shown below.


    Also make sure to add <uses-permission android:name="android.permission.READ_SMS" /> in AndoirdManifest.xml to include sms reading permission in the app.

   Similarly in order to retrieve sms messages sent after a particular date just remove <= check from filter and query the database a shown below.


No comments:

Post a Comment