
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setDataAndType( Uri.parse("file://" +file.getAbsolutePath()),"image/*"); startActivity(intent);
I want to display a shared image, delete and install as functionality using Android intent. but my image opens without the share option ......... How do I show the image with the share options?
android android-intent share
Shreeshesh
source share