Skip to content Skip to sidebar Skip to footer

How To Share *.txt File In Android

I tried many ways but I can't do this. I have a *.txt file. I want to share it via Bluetooth, wifi, email and .... When i used this code i cant share the file: File file = new Fi

Solution 1:

Change your Code Like this.

From

Filefile=newFile(Environment.getExternalStorageDirectory(), "Email-Ghap/Emails.txt");

To

Filefile=newFile(Environment.getExternalStorageDirectory() + "/" + "Email-Ghap/Emails.txt");

from:

sharingIntent.setType("*/txt");

To

sharingIntent.setType("text/*");

so yourFinal Code Looks Like

Filefile=newFile(Environment.getExternalStorageDirectory().toString() + "/" + "abc.txt");
            IntentsharingIntent=newIntent(Intent.ACTION_SEND);
            sharingIntent.setType("text/*");
            sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + file.getAbsolutePath()));
            startActivity(Intent.createChooser(sharingIntent, "share file with"));

Post a Comment for "How To Share *.txt File In Android"