List of usage examples for android.content DialogInterface.OnClickListener interface-usage
From source file com.deange.textfaker.ui.dialog.ConversationPersonDialog.java
public class ConversationPersonDialog extends PatchedDialogFragment<ConversationPersonDialog.Callback> implements DialogInterface.OnClickListener { public static final String TAG = ConversationPersonDialog.class.getSimpleName(); private Callback mCallback = Fallback.INSTANCE; private EditText mToPerson;
From source file com.jefftharris.passwdsafe.lib.AboutDialog.java
/** * The about dialog */ public class AboutDialog extends AppCompatDialogFragment implements DialogInterface.OnClickListener { // TODO: Move passwdsafe about_fragment to lib once sync app able to use extra libs
From source file com.andrew.apollo.menu.AddToPlaylistDialog.java
/** * Created by drew on 2/16/14. */ public class AddToPlaylistDialog extends DialogFragment implements DialogInterface.OnClickListener { protected List<Playlist> mUserPlaylists;
From source file com.github.yuukis.businessmap.app.ContactsItemsDialogFragment.java
public class ContactsItemsDialogFragment extends DialogFragment implements DialogInterface.OnClickListener { public interface OnSelectListener { public void onContactsSelected(ContactsItem contacts); }
From source file com.ovrhere.android.careerstack.ui.fragments.dialogs.ConfirmationDialogFragment.java
/** Simple confirmation dialog that retains it's instance.
* Give a title, message, positive, negative buttons.
* Requires either activity to implement
* {@link DialogInterface#OnClickListener} or
* call {@link Builder#setTargetFragment(Fragment, int)}.
* Note that upon a given button press, the dialog dismisses itself.
From source file com.ovrhere.android.currencyconverter.ui.fragments.dialogs.ConfirmationDialogFragment.java
/** Simple confirmation dialog that retains it's instance.
* Give a title, message, positive, negative buttons.
* Requires either activity to implement
* {@link DialogInterface#OnClickListener} or
* call {@link Builder#setTargetFragment(Fragment, int)}.
* Note that upon a given button press, the dialog dismisses itself.
From source file rtandroid.benchmark.ui.dialogs.NumberPickerDialog.java
/** * Dialog which allows choosing of a number in certain range with a step. */ public class NumberPickerDialog extends DialogFragment implements DialogInterface.OnClickListener { private static final String ARG_TITLE = "title"; private static final String ARG_MIN = "min_value";
From source file com.github.yuukis.businessmap.app.ContactsGroupDialogFragment.java
public class ContactsGroupDialogFragment extends DialogFragment implements DialogInterface.OnClickListener { public interface OnSelectListener { public void onContactsGroupSelected(ContactsGroup group); }
From source file it.scoppelletti.mobilepower.app.HelpDialogFragment.java
/** * Dialogo di Guida. * * @since 1.0 */ public final class HelpDialogFragment extends AbstractDialogFragment implements DialogInterface.OnClickListener {
From source file com.hiqes.android.demopermissionsm.ui.LogLoadDialog.java
public class LogLoadDialog extends DialogFragment implements DialogInterface.OnClickListener { private static final String TAG = LogLoadDialog.class.getSimpleName(); public static final String PROG_SAVE_DIR_NAME = "demop"; private ArrayAdapter<String> mLogFileAdapter; private Callbacks mCb;