Home | History | Annotate | Download | only in app

Lines Matching defs:AlertDialog

49  * <p>The AlertDialog class takes care of automatically setting
64 public class AlertDialog extends Dialog implements DialogInterface {
68 * Special theme constant for {@link #AlertDialog(Context, int)}: use
74 * Special theme constant for {@link #AlertDialog(Context, int)}: use
80 * Special theme constant for {@link #AlertDialog(Context, int)}: use
86 * Special theme constant for {@link #AlertDialog(Context, int)}: use
92 * Special theme constant for {@link #AlertDialog(Context, int)}: use
97 protected AlertDialog(Context context) {
102 * Construct an AlertDialog that uses an explicit theme. The actual style
103 * that an AlertDialog uses is a private implementation, however you can
109 protected AlertDialog(Context context, int theme) {
113 AlertDialog(Context context, int theme, boolean createContextWrapper) {
119 protected AlertDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
356 * Constructor using a context for this builder and the {@link AlertDialog} it creates.
364 * the {@link AlertDialog} it creates. The actual theme
365 * that an AlertDialog uses is a private implementation, however you can
369 * {@link AlertDialog#THEME_TRADITIONAL AlertDialog.THEME_TRADITIONAL},
370 * {@link AlertDialog#THEME_HOLO_DARK AlertDialog.THEME_HOLO_DARK}, or
371 * {@link AlertDialog#THEME_HOLO_LIGHT AlertDialog.THEME_HOLO_LIGHT}.
907 * Creates a {@link AlertDialog} with the arguments supplied to this builder. It does not
912 public AlertDialog create() {
913 final AlertDialog dialog = new AlertDialog(P.mContext, mTheme, false);
927 * Creates a {@link AlertDialog} with the arguments supplied to this builder and
930 public AlertDialog show() {
931 AlertDialog dialog = create();