Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.app.Activity;
import android.content.Intent;

public class Main {
    public static void launch(Activity activity, String package_name) throws Exception {
        Intent intent = activity.getPackageManager().getLaunchIntentForPackage(package_name);
        if (intent != null)
            activity.startActivity(intent);
        else
            throw new Exception("Package Not Found");
    }
}