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.cummins.mowo.activity.swipelistview.AboutDialog.java

public class AboutDialog extends DialogFragment {

    /**
     * Constructor
     */
    public AboutDialog() {

From source file com.chatwingsdk.fragments.ColorPickerDialogFragment.java

/**
 * Author: Huy Nguyen
 * Date: 6/11/13
 * Time: 5:34 PM
 */
public class ColorPickerDialogFragment extends DialogFragment implements DialogInterface.OnClickListener {

From source file com.cerema.cloud2.ui.dialog.ChangelogDialog.java

/**
 * Dialog to show the contents of res/raw/CHANGELOG.txt
 */
public class ChangelogDialog extends DialogFragment {

    private static final String ARG_CANCELABLE = ChangelogDialog.class.getCanonicalName() + ".ARG_CANCELABLE";

From source file com.arthurtimberly.fragments.ErrorDialogFragment.java

/**
 * A blocking error dialog that requires the user to exit the application.
 */
public class ErrorDialogFragment extends DialogFragment {

    private static final String FRAGMENT_BUNDLE_KEY_TITLE = "title";

From source file com.arthurtimberly.fragments.BeamDetailsDialogFragment.java

/**
 * Android Beam details dialog.
 */
public class BeamDetailsDialogFragment extends DialogFragment {

    @SuppressLint("NewApi")

From source file com.androzic.plugin.tracker.PreferencesHelpDialog.java

public class PreferencesHelpDialog extends DialogFragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.dlg_preferences_help, container, false);
    }

From source file com.chatwing.whitelabel.fragments.ColorPickerDialogFragment.java

/**
 * Author: Huy Nguyen
 * Date: 6/11/13
 * Time: 5:34 PM
 */
public class ColorPickerDialogFragment extends DialogFragment implements DialogInterface.OnClickListener {

From source file com.agna.setmaster.ui.base.dialog.BaseDialog.java

/**
 *  ?? 
 *   ?   Presenter'a   {@link DialogManager}
 *  ?  ? ?   {@link this#getListener(Class)}
 *  ? ? ? ?   Presenter, ?     ,
 * ? Presenter   ?,      {@link this#getListener(Class)}

From source file com.androidformenhancer.internal.impl.DatePickerDialogSupportFragment.java

public class DatePickerDialogSupportFragment extends android.support.v4.app.DialogFragment
        implements DialogFragment<FragmentTransaction> {
    private static final String ARG_TARGET_VIEW_RES_ID = "targetViewResId";
    private static final String ARG_DEFAULT_MESSAGE_RES_ID = "defaultMessageResId";

    public static class Builder {

From source file butter.droid.base.fragments.dialog.NumberPickerDialogFragment.java

public class NumberPickerDialogFragment extends DialogFragment {

    public static final String TITLE = "title";
    public static final String MAX_VALUE = "max_val";
    public static final String MIN_VALUE = "min_val";
    public static final String DEFAULT_VALUE = "default_val";