Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Intent;

public class Main {
    public static String EXTRA_LAUNCH_THROUGH_STATUS_BAR = "org.openintents.internal.extra.LAUNCH_THROUGH_STATUS_BAR";

    public static final void setLaunchThroughStatusBar(Intent intent, long launchThroughStatusBar) {
        intent.putExtra(EXTRA_LAUNCH_THROUGH_STATUS_BAR, launchThroughStatusBar);
    }
}