/ Published in: Java
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Intent i = new Intent(Intent.ACTION_SEND) ; i.putExtra(Intent.EXTRA_STREAM,imageUri) ; i.setType("image/jpeg") ; startActivity(Intent.createChooser(i,"Send Image To:")) ;