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 cheng.app.cnbeta.OpenSourceLicensesFragment.java

public class OpenSourceLicensesFragment extends DialogFragment {
    public OpenSourceLicensesFragment() {
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

From source file alphadelete.aguaconsciente.ui.fragments.AboutFragment.java

public class AboutFragment extends DialogFragment {
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        LayoutInflater dialogInflater = getActivity().getLayoutInflater();
        View openSourceLicensesView = dialogInflater.inflate(R.layout.fragment_about, null);

From source file com.bonganimbigi.soundrecorder.fragments.LicensesFragment.java

/**
 * Created by Daniel on 1/3/2015.
 */
public class LicensesFragment extends DialogFragment {
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

From source file com.ambergleam.licensesdialogexample.LicensesDialogFragment.java

public class LicensesDialogFragment extends DialogFragment {

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

From source file codewrencher.gifit.tools.ErrorDialog.java

/**
 * Created by Gene on 10/30/2016.
 * _____          _   __          __                  _
 * / ____|        | |  \ \        / /                 | |
 * | |     ___   __| | __\ \  /\  / / __ ___ _ __   ___| |__   ___ _ __
 * | |    / _ \ / _` |/ _ \ \/  \/ / '__/ _ \ '_ \ / __| '_ \ / _ \ '__|

From source file com.appdynamics.demo.gasp.fragment.PlayServicesDialogFragment.java

/**
 * Copyright (c) 2013 Mark Prichard
 * <p/>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at

From source file ch.prokopovi.ui.main.AboutFragment.java

@EFragment(R.layout.about_layout)
public class AboutFragment extends DialogFragment {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

From source file by.android.dailystatus.dialog.LicenseDialog.java

public class LicenseDialog extends DialogFragment {

    String text;

    public void setText(String text) {
        this.text = text;

From source file codewrencher.gifit.tools.RequestPermissionConfirmationDialog.java

/**
 * Created by Gene on 10/30/2016.
 * _____          _   __          __                  _
 * / ____|        | |  \ \        / /                 | |
 * | |     ___   __| | __\ \  /\  / / __ ___ _ __   ___| |__   ___ _ __
 * | |    / _ \ / _` |/ _ \ \/  \/ / '__/ _ \ '_ \ / __| '_ \ / _ \ '__|

From source file com.collabora.xwperf.notxw_contacts.fragments.DatePickerFragment.java

public class DatePickerFragment extends DialogFragment implements DatePickerDialog.OnDateSetListener {
    public static final String EXTRA_INIT_DATE = "init_date";
    public static final String TAG = DatePickerFragment.class.getSimpleName();
    private OnDatePickedListener onDialogResultListener;

    public static DatePickerFragment newInstance(Date initDate) {