Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;
import android.content.Intent;

import android.net.Uri;

public class Main {
    public static void shareFile(Context context, String title, String subject, String text, String mime,
            String path) {
        Intent sendIntent = new Intent(Intent.ACTION_SEND);
        sendIntent.setType(mime);
        sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
        sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + path));
        sendIntent.putExtra(Intent.EXTRA_TEXT, text);
        context.startActivity(Intent.createChooser(sendIntent, title));
    }
}