I have written code to share .txt
file on my device to whatsapp. However text file gets shared but instead of showing the name of the .txt
file it shows untitled. Here is my code.I have also attached screen shot of whatsapp screen after sharing the file.
public static void shareTextToSocialMedia(Context c,String sFilePath)
{
//share pdf via WhatsApp
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse(sFilePath);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
c.startActivity(Intent.createChooser(sharingIntent, "Share report using"));
}