Example usage for android.app DialogFragment subclass-usage

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

Introduction

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

Usage

From source file com.github.guwenk.smuradio.SignInDialog.java

public class SignInDialog extends DialogFragment {
    private static final int RC_SIGN_IN = 9001;
    private static final int PICK_MUSIC_REQUEST = 9002;
    //AUTH
    private final String AuthTag = "Auth debug: ";
    AlertDialog alert;

From source file com.hijacker.InstallFirmwareDialog.java

public class InstallFirmwareDialog extends DialogFragment {
    View dialogView;
    Shell shell;
    EditText firmView, utilView;
    CheckBox backup_cb;

From source file de.spiritcroc.ownlog.ui.fragment.LogFilterEditFragment.java

public class LogFilterEditFragment extends DialogFragment implements PasswdHelper.RequestDbListener {

    private static final String TAG = LogFilterEditFragment.class.getSimpleName();

    // Saved instance state bundle keys
    private static final String KEY_ADD_ITEM = LogFilterEditFragment.class.getName() + ".add_item";

From source file com.github.chenxiaolong.dualbootpatcher.pathchooser.PathChooserDialog.java

public class PathChooserDialog extends DialogFragment
        implements SingleButtonCallback, PathChooserItemClickListener, GenericInputDialogListener {
    private static final String DIALOG_NEW_FOLDER = PathChooserDialog.class.getCanonicalName()
            + ".dialog.new_folder";

    private static final String EMULATED_STORAGE_DIR = "/storage/emulated";

From source file com.hijacker.FeedbackDialog.java

public class FeedbackDialog extends DialogFragment {
    View dialogView;
    EditText emailView, feedbackView;
    ProgressBar progress;
    CheckBox include_report;
    File report;

From source file com.docd.purefm.ui.dialogs.FilePropertiesDialog.java

public final class FilePropertiesDialog extends DialogFragment {

    public static FilePropertiesDialog newInstance(final @NonNull GenericFile f) {
        final Bundle extras = new Bundle();
        extras.putSerializable(Extras.EXTRA_FILE, f);

From source file com.silentcircle.silentphone2.dialogs.CryptoInfoDialog.java

/**
 * Creates the detailed security and crypto info panel.
 * <p/>
 * Created by werner on 01.04.14.
 */
// ---LICENSE_BEGIN---

From source file org.alfresco.mobile.android.application.accounts.fragment.AccountEditFragment.java

public class AccountEditFragment extends DialogFragment {
    public static final String TAG = "AccountEditFragment";

    private Button validate;

    private String url = null, host = null, username = null, password = null, servicedocument = null,

From source file cz.yetanotherview.webcamviewer.app.actions.JsonFetcherDialog.java

import cz.yetanotherview.webcamviewer.app.helper.SendToInbox;
import cz.yetanotherview.webcamviewer.app.helper.Utils;
import cz.yetanotherview.webcamviewer.app.actions.simple.LocationWarningDialog;
import cz.yetanotherview.webcamviewer.app.actions.simple.NothingSelectedDialog;
import cz.yetanotherview.webcamviewer.app.actions.simple.ReportDialog;
import cz.yetanotherview.webcamviewer.app.actions.simple.UnavailableDialog;

From source file com.appsimobile.appsii.module.home.YahooLocationChooserDialogFragment.java

/**
 * Dialog fragment that pops up when touching the preference.
 */
public class YahooLocationChooserDialogFragment extends DialogFragment implements TextWatcher, Handler.Callback,
        LoaderManager.LoaderCallbacks<CircularArray<YahooWeatherApiClient.LocationSearchResult>>,
        View.OnClickListener {