Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Intent;

public class Main {
    public static final String IS_FROM_SELF = "com.mengdd.hellobrowser.IS_FROM_SELF";

    public static Intent newIntentFromSelf(String action) {
        return newIntentFromSelf().setAction(action);
    }

    public static Intent newIntentFromSelf() {
        Intent intent = new Intent();
        intent.putExtra(IS_FROM_SELF, true);
        return intent;
    }
}