Example usage for android.support.v4.app DialogFragment subclass-usage

List of usage examples for android.support.v4.app DialogFragment subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.app DialogFragment subclass-usage.

Usage

From source file com.boko.vimusic.menu.PhotoSelectionDialog.java

/**
 * Used when the user touches the image in the header in {@link ProfileActivity}
 * . It provides an easy interface for them to choose a new image, use the old
 * image, or search Google for one.
 * 
 * @author Andrew Neal (andrewdneal@gmail.com)

From source file com.csipsimple.ui.help.Legal.java

public class Legal extends DialogFragment {

    public static Legal newInstance() {
        return new Legal();
    }

From source file com.aniruddhc.acemusic.player.Dialogs.AddEQPresetDialog.java

public class AddEQPresetDialog extends DialogFragment {

    private Common mApp;
    private AddEQPresetDialog dialog;
    private View dialogView;
    private EditText newPresetNameField;

From source file ca.mudar.parkcatcher.ui.fragments.TimePickerFragment.java

public class TimePickerFragment extends DialogFragment implements TimePickerDialog.OnTimeSetListener {

    protected OnParkingCalendarChangedListener mListener;

    public interface OnParkingCalendarChangedListener {
        // Parent activity is required to provide getter/setter for the parking

From source file am.roadpolice.roadpolice.dialogs.DialogSettings.java

public class DialogSettings extends DialogFragment {

    public static final String TAG = DialogSettings.class.getSimpleName();

    public static final int NONE = 0;
    public static final int DAILY = 1;

From source file ch.citux.td.ui.dialogs.ErrorDialogFragment.java

public class ErrorDialogFragment extends DialogFragment {

    private static final String FRAGMENT_TAG = "ErrorDialogFragment";
    private static final String BUNDLE_TITLE = "title";
    private static final String BUNDLE_MESSAGE = "message";
    private DialogInterface.OnClickListener mOnClickListener;

From source file com.abcvoipsip.ui.help.Legal.java

public class Legal extends DialogFragment {

    public static Legal newInstance() {
        return new Legal();
    }

From source file com.audacity.booster.fragments.DetectorTaskFragment.java

/**
 * Fragment owns the lifetime of a DetectAsyncTask and a progress dialog for it
 * 
 * Fragment is expected to be retained on rotation, unlike owning fragment
 * 
 * A DetectAsyncTask starts working as soon as the fragment is created.

From source file ca.rmen.android.poetassistant.main.WarningNoSpaceDialogFragment.java

/**
 * Shows a dialog with a title, message, and ok button.
 * The activity or fragment which adds this dialog should implement the
 * WarningDialogListener interface.
 */
public class WarningNoSpaceDialogFragment extends DialogFragment {

From source file com.android.colorpicker.ColorPickerDialog.java

/**
 * A dialog which takes in as input an array of colors and creates a palette
 * allowing the user to select a specific color swatch, which invokes a
 * listener.
 */
public class ColorPickerDialog extends DialogFragment implements OnColorSelectedListener {