[android-developers] Re: Direct SMS send with saved outgoing SMS

2011-10-19 Thread BearTi
No one an idea? Is it not possible? On 18 Okt., 18:56, BearTi mlrti...@googlemail.com wrote: Hi, in my App I want to send a SMS via... Uri uri = Uri.parse(smsto:1234567891012); Intent it = new Intent(Intent.ACTION_SENDTO, uri); it.putExtra(sms_body, The SMS text); startActivity(it);

Re: [android-developers] Re: Direct SMS send with saved outgoing SMS

2011-10-19 Thread Mark Murphy
On Wed, Oct 19, 2011 at 9:17 AM, BearTi mlrti...@googlemail.com wrote: No one an idea? Is it not possible? Either use SmsManager (no button click, but not recorded by any SMS client, since you are not using an SMS client) or ACTION_SENDTO (uses default SMS client, but user gets the chance to

[android-developers] Re: Direct SMS send with saved outgoing SMS

2011-10-19 Thread BearTi
Is there a possibility to add the SMS after I send it via SmsManager in the SMS history? On 19 Okt., 15:33, Mark Murphy mmur...@commonsware.com wrote: On Wed, Oct 19, 2011 at 9:17 AM, BearTi mlrti...@googlemail.com wrote: No one an idea? Is it not possible? Either use SmsManager (no button