PIFactory.java :  » Client » nagroid » de » schoar » nagroid » Android Open Source

Android Open Source » Client » nagroid 
nagroid » de » schoar » nagroid » PIFactory.java
package de.schoar.nagroid;

import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;

public class PIFactory {

  @SuppressWarnings("unchecked")
  public static PendingIntent getForActivity(Context ctx, Class c) {
    return PendingIntent.getActivity(ctx,
        PendingIntent.FLAG_CANCEL_CURRENT, new Intent(ctx, c), 0);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.