I can just read the first recipient of a send SMS with multiple
recipients by the following code snippet:
Uri smsURI = Uri.parse("content://sms/");
Cursor smsCursor = m_objContentResolver.query(smsURI, null, null,
null, null);
.......
......
String strPerson = null;
int nColumnIndex = smsCursor.getColumnIndex("address");
if (-1 != nColumnIndex)
{
strPerson = smsCursor.getString(nColumnIndex);
}
......
smsCursor.moveToNext()
But How could I get the others ? Any input on this issue will be
highly appreciated !
Sincerely,
Alvin Hu
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en