Home | History | Annotate | Download | only in util

Lines Matching refs:activity

21 import android.app.Activity;
33 * <li>The owning Activity creates on instance of this class, passing itself and two Ids that are
34 * not used by other Dialogs of the Activity.</li>
38 * <li>In the implementation of {@link Activity#onCreateDialog}, calls for the
45 private final Activity mActivity;
54 * Creates a new instance of this class for the given Activity.
55 * @param activity The activity this object is used for
57 public DialogManager(final Activity activity) {
58 if (activity == null) throw new IllegalArgumentException("activity must not be null");
59 mActivity = activity;
82 * Callback function called by the Activity to handle View-managed Dialogs.