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.cpd.fragments.LibraryAutoRenewDialogFragment.java

/**
 * @author Alan Wink
 */
public class LibraryAutoRenewDialogFragment extends DialogFragment {

    private RenewDialogResponse mCallback;

From source file com.amalgam.app.SupportSimpleAlertDialogFragment.java

/**
 * Simple implementation of alert dialog with support library.
 * Just show customized message.
 * If the user confirmed that message, just dismiss the dialog.
 * @author keishin.yokomaku
 */

From source file com.bilibili.sample.dialog.ProgressStyleDialog.java

/**
 * @author xyczero
 * @time 16/5/23
 */
public class ProgressStyleDialog extends DialogFragment implements View.OnClickListener {
    public static final String TAG = ProgressStyleDialog.class.getSimpleName();

From source file au.org.ala.fielddata.mobile.ui.DatePickerFragment.java

/**
 * As suggested at: {@link http://developer.android.com/guide/topics/ui/controls/pickers.html} 
 */
public class DatePickerFragment extends DialogFragment implements DatePickerDialog.OnDateSetListener {

    @Override

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

public class SimpleDialogSupportFragment extends android.support.v4.app.DialogFragment
        implements DialogFragment<FragmentTransaction> {
    private static final String ARG_TITLE = "title";
    private static final String ARG_MESSAGE = "message";
    private static final String ARG_CANCELABLE = "cancelable";

From source file com.commonsware.android.feedfrags.AddFeedDialogFragment.java

public class AddFeedDialogFragment extends DialogFragment {
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        final View form = getActivity().getLayoutInflater().inflate(R.layout.add_feed, null);

        return (new AlertDialog.Builder(getActivity()).setTitle(R.string.add_feed).setView(form)

From source file com.commonsware.android.preso.fragment.PresentationFragment.java

abstract public class PresentationFragment extends DialogFragment {
    private Display display = null;
    private Presentation preso = null;

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

From source file com.connectsdk.smarthomesampler.dialog.MessageFragmentDialog.java

public class MessageFragmentDialog extends DialogFragment {

    public static final String ARG_MESSAGE = "message";
    private static final java.lang.String ARG_TITLE = "title";

    public static MessageFragmentDialog newInstance(String title, String message) {

From source file com.cuddlesoft.nori.fragment.TagListDialogFragment.java

/** Dialog showing a list of tags for given image in {@link com.cuddlesoft.nori.ImageViewerActivity}. */
public class TagListDialogFragment extends DialogFragment implements ListView.OnItemClickListener {
    /** Identifier used for the parceled {@link com.cuddlesoft.norilib.clients.SearchClient.Settings} object in this fragment's argument bundle. */
    private static final String BUNDLE_ID_SEARCH_CLIENT_SETTINGS = "com.cuddlesoft.nori.SearchClient.Settings";
    /** Identifier used for the parceled {@link com.cuddlesoft.norilib.Image} object in this fragment's argument bundle. */
    private static final String BUNDLE_ID_IMAGE = "com.cuddlesoft.nori.Image";

From source file com.bilibili.magicasakurademo.dialog.ProgressStyleDialog.java

/**
 * @author xyczero
 * @time 16/5/23
 */
public class ProgressStyleDialog extends DialogFragment implements View.OnClickListener {
    public static final String TAG = ProgressStyleDialog.class.getSimpleName();