Uri mmsUri = Uri.parse("content://media/external/images/media/1");
Intent intentMMS = new Intent(Intent.ACTION_SEND);
intentMMS.putExtra("sms_body", "Hi how are you");
intentMMS.putExtra(Intent.EXTRA_STREAM, mmsUri);
intentMMS.setType("image/png");
startActivity(intentMMS);
I used the above code to create a MMS sending application. But I don't understand how to add this to my code. In this code there is no place to put the sending number.
Can someone help me on this matter???