Can anyone help me with the coding to get the outgoing SMS / MMS count in Android 1.5?
I would like to my code to know automatically when the SMS or MSS will be sent from the phone.
Can anyone help me with the coding to get the outgoing SMS / MMS count in Android 1.5?
I would like to my code to know automatically when the SMS or MSS will be sent from the phone.
Unfortunately there is currently no good way to trigger custom code when the phone sends a message. If you only need the count of sent messages you can query the content provider for content://sms/sent
but that only gives you messages that were sent by an application that stores them there after sending (e.g. Android Messaging Application).
Related questions