Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.lang.ref.WeakReference;

import android.content.Context;
import android.content.Intent;

public class Main {
    public static Intent getIntent(Context context, Class<?> actyClass) {
        Context loContext = new WeakReference<Context>(context).get();
        Intent intent = new Intent(loContext, actyClass);
        return intent;
    }
}