I'm working in a project which needs sending MMS on a button click..
There are a lot of images used and the recipient number is also known.
Can I hard code these two things so that no preview of MMS is shown..

Everything should be done on a button click.. The problem is if I am
using the Intent it shows the UI. My code:

Intent intent = new
Intent(Intent.ACTION_SEND);intent.putExtra("address", "5556");
intent.putExtra("sms_body",
"Hi!!");intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File("/
sdcard/Water.jpg")));intent.setType("image/*"); startActivity(intent);

Help!!

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