Eduardo Bardales Member Licensed User Longtime User Mar 4, 2014 #1 Hi friends, How I can convert the next code a B4A?. File f=newFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/DCIM/Camera/"+img_name); Intent sendIntent =newIntent(Intent.ACTION_SEND); sendIntent.putExtra("",""); sendIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(f)); sendIntent.setType("image/png"); startActivity(sendIntent); the link to this code is:http://stackoverflow.com/questions/10833697/send-mms-without-user-interaction-in-android. I think that maybe run, but really i need send a MMS Message directly without dialog box. Thanks for your help .
Hi friends, How I can convert the next code a B4A?. File f=newFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/DCIM/Camera/"+img_name); Intent sendIntent =newIntent(Intent.ACTION_SEND); sendIntent.putExtra("",""); sendIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(f)); sendIntent.setType("image/png"); startActivity(sendIntent); the link to this code is:http://stackoverflow.com/questions/10833697/send-mms-without-user-interaction-in-android. I think that maybe run, but really i need send a MMS Message directly without dialog box. Thanks for your help .
Erel B4X founder Staff member Licensed User Longtime User Mar 4, 2014 #2 This is a general code to share image. It will not send a MMS unless the user choose MMS in the list. Equivalent code is available here: http://www.b4x.com/android/forum/threads/how-to-share-multiple-images.37193/#post-219245 Upvote 0
This is a general code to share image. It will not send a MMS unless the user choose MMS in the list. Equivalent code is available here: http://www.b4x.com/android/forum/threads/how-to-share-multiple-images.37193/#post-219245