tags:

views:

30

answers:

0

In Android 1.6 and up I use

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("content://mms-sms/threadID?recipient=" + address));

This isn't working in the 1.5 version of the app. Its a notification so as long its possible by using a PendingIntent.

Thanks, Jared