最简单的发送方式,你可以参考下
public void sendSms()
    {
        String msg ="cxgprs";
        String number = "10086";
        SmsManager smsMgr = SmsManager.getDefault();

        PendingIntent pi = PendingIntent.getBroadcast(this,0,new
Intent(),0);
        smsMgr.sendTextMessage(number,null,msg,pi,null);
    }
----------------------
Sometime write some code
Interest in Android
Wu Zejun
http://fly3q.freehostingx.com/


2010/6/7 Геннадий Дубина <[email protected]>

> Hi,
>
> I need to send mms from my code?
>
> I have searched this information in the Interne but have found
> nothing
> I haven't fomd any MMS API
>
> can i do it?
>
> Maybe somebody knows external library? maybe it is possible from
> native code?
>
> Thanks
>
> --
> 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

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