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.support.v4.content.LocalBroadcastManager;

public class Main {
    private static final String ACTION_NEW_MESSAGES = "ACTION_NEW_MESSAGES";

    public static void sendEvent(Context context) {
        Intent intent = new Intent(ACTION_NEW_MESSAGES);

        LocalBroadcastManager.getInstance(context).sendBroadcast(intent);
    }
}