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 {
    /**
     * Start a new Activity with the flag CLEAR_TOP
     *
     * @param context, Context
     * @param cls,     Class
     */
    public static void startActivity(Context context, Class<?> cls) {
        Intent i = new Intent(context, cls);
        //   i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        context.startActivity(i);
    }
}