The SMS content provider, at least by my knowledge is not public and thus no
one would be able to tell you how to do stuff with it. Moreover,
manufacturers put in their own implementations of the content provider. So,
your code might not run perfectly on all the devices.

On Fri, Nov 12, 2010 at 4:01 PM, Alvin Hu <[email protected]> wrote:

> 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]<android-developers%[email protected]>
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en




-- 
Kumar Bibek
http://techdroid.kbeanie.com
http://www.kbeanie.com

-- 
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

Reply via email to