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 jfabrix101.lib.dialog.MessagePromptDialogFragment.java

/**
 * Dialog window to insert an input text.
 *
 * <p>As result, the text inserted by user will be returned inside a bundle
 * under the key 'DIALOG_RESULT_VALUE'
 * 

From source file com.commonsware.android.dlgfrag.SampleDialogFragment.java

public class SampleDialogFragment extends DialogFragment implements DialogInterface.OnClickListener {
    private View form = null;

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        form = getActivity().getLayoutInflater().inflate(R.layout.dialog, null);

From source file io.github.tjg1.nori.fragment.TagListDialogFragment.java

/** Dialog showing a list of tags for given image in {@link io.github.tjg1.nori.ImageViewerActivity}. */
public class TagListDialogFragment extends DialogFragment implements DialogInterface.OnClickListener {

    //region Bundle IDs
    /** Identifier used for the parceled {@link io.github.tjg1.library.norilib.clients.SearchClient.Settings} object in this fragment's argument bundle. */
    private static final String BUNDLE_ID_SEARCH_CLIENT_SETTINGS = "io.github.tjg1.nori.SearchClient.Settings";

From source file de.escoand.readdaily.ReminderDialogFragment.java

public class ReminderDialogFragment extends DialogFragment
        implements TimePicker.OnTimeChangedListener, DialogInterface.OnClickListener {
    private final static String SETTINGS_ACTIVE = "reminder_active";
    private final static String SETTINGS_HOUR = "reminder_hour";
    private final static String SETTINGS_MINUTE = "reminder_minute";

From source file net.tjado.passwdsafe.view.ConfirmPromptDialog.java

/**
 * Dialog to confirm a prompt
 */
public class ConfirmPromptDialog extends AppCompatDialogFragment implements CompoundButton.OnCheckedChangeListener,
        DialogInterface.OnCancelListener, DialogInterface.OnClickListener {
    /**

From source file rtandroid.benchmark.ui.dialogs.BenchmarkPickerDialog.java

/**
 * Dialog which allows choosing of one of the available benchmarks.
 */
public class BenchmarkPickerDialog extends DialogFragment implements DialogInterface.OnClickListener {
    private OnValueSelectedListener mListener;

From source file com.simplaapliko.apprater.sample.MainActivityFragment.java

public class MainActivityFragment extends Fragment implements DialogInterface.OnClickListener {

    public MainActivityFragment() {
    }

    @Override

From source file com.jefftharris.passwdsafe.view.ConfirmPromptDialog.java

/**
 * Dialog to confirm a prompt
 */
public class ConfirmPromptDialog extends AppCompatDialogFragment implements CompoundButton.OnCheckedChangeListener,
        DialogInterface.OnCancelListener, DialogInterface.OnClickListener {
    /**

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.jefftharris.passwdsafe.sync.owncloud.OwncloudEditDialog.java

/**
 * Dialog to edit an ownCloud account
 */
public class OwncloudEditDialog extends DialogFragment implements DialogInterface.OnClickListener {
    public interface Listener {
        /** Handle changed settings for ownCloud */