Android Question Message Type in stored SMS messages

siddsg

Member
Licensed User
Longtime User
For those working on projects where they want to read stored SMS's....
interesting piece of information on message types:

MESSAGE_TYPE_ALL =0;
MESSAGE_TYPE_INBOX =1;
MESSAGE_TYPE_SENT =2;
MESSAGE_TYPE_DRAFT =3;
MESSAGE_TYPE_OUTBOX =4;
MESSAGE_TYPE_FAILED =5;// for failed outgoing messages
MESSAGE_TYPE_QUEUED =6;// for messages to send later
 
Top