Example usage for android.content DialogInterface.OnClickListener interface-usage

List of usage examples for android.content DialogInterface.OnClickListener interface-usage

Introduction

In this page you can find the example usage for android.content DialogInterface.OnClickListener interface-usage.

Usage

From source file org.qeo.android.security.QrDownloadDialog.java

/**
 * This dialog allows the user to download a QR capable application in case he/she chooses to scan his/her OTC and URL
 * values form the OTC dialog.
 */
public class QrDownloadDialog extends DialogFragment implements DialogInterface.OnClickListener {
    private static final Logger LOG = Logger.getLogger("QrDownloadDialog");

From source file svenmeier.coxswain.view.DeleteDialogFragment.java

/**
 */
public class DeleteDialogFragment extends DialogFragment implements DialogInterface.OnClickListener {

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

From source file com.andremion.louvre.sample.NumberPickerDialog.java

public class NumberPickerDialog extends DialogFragment implements DialogInterface.OnClickListener {

    private static final String TAG = NumberPickerDialog.class.getSimpleName();
    private static final String ARG_REQUEST_CODE = "request_code_arg";
    private static final int MIN_VALUE = 1;
    private static final int MAX_VALUE = 100;

From source file org.tomasdavid.vehicleroutingproblem.components.LegendDialog.java

/**
 * Dialog contains legend to vehicle routing problem.
 *
 * @author Tomas David
 */
public class LegendDialog extends DialogFragment implements DialogInterface.OnClickListener {

From source file org.tomasdavid.vehicleroutingproblem.components.AboutAppDialog.java

/**
 * Dialog for providing basic information about the application.
 *
 * @author Tomas David
 */
public class AboutAppDialog extends DialogFragment implements DialogInterface.OnClickListener {

From source file app.philm.in.fragments.CredentialsChangedFragment.java

public class CredentialsChangedFragment extends DialogFragment
        implements DialogInterface.OnClickListener, UserController.UserUi {

    private UserController.UserUiCallbacks mCallbacks;

    @Override

From source file ru.tinkoff.decoro.demo.MaskSelectorDialog.java

/**
 * @author Mikhail Artemev
 */
public class MaskSelectorDialog extends DialogFragment implements DialogInterface.OnClickListener {

    public interface OnMaskSelectedListener {

From source file org.libreoffice.impressremote.fragment.TimerEditingDialog.java

public class TimerEditingDialog extends DialogFragment
        implements TimePickerDialog.OnTimeSetListener, DialogInterface.OnClickListener {
    public static final String TAG = "TIMER_EDITING";

    private static final boolean IS_24_HOUR_VIEW = true;

From source file com.deange.textfaker.ui.dialog.MessageSenderDialog.java

public class MessageSenderDialog extends PatchedDialogFragment<MessageSenderDialog.Callback>
        implements DialogInterface.OnClickListener {

    public static final String TAG = MessageSenderDialog.class.getSimpleName();
    private Callback mCallback = Fallback.INSTANCE;
    private String mPersonName;

From source file pl.mrwojtek.sensrec.app.DeleteConfirmationDialog.java

/**
 * Dialog asking for confirmation to delete records.
 */
public class DeleteConfirmationDialog extends DialogFragment implements DialogInterface.OnClickListener {

    public static final String DIALOG_TAG = "DeleteConfirmationDialog";