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;

public class Main {
    private static void sendBroadcastFile(Context context, String filepath, double progress) {
        Intent intent = new Intent();
        intent.setAction("file_receiver");
        intent.putExtra("path", filepath);
        intent.putExtra("progress", progress);
        context.sendBroadcast(intent);
    }
}