Lines Matching refs:theme

67      * Special theme constant for {@link #AlertDialog(Context, int)}: use
68 * the traditional (pre-Holo) alert dialog theme.
73 * Special theme constant for {@link #AlertDialog(Context, int)}: use
74 * the holographic alert theme with a dark background.
79 * Special theme constant for {@link #AlertDialog(Context, int)}: use
80 * the holographic alert theme with a light background.
85 * Special theme constant for {@link #AlertDialog(Context, int)}: use
86 * the device's default alert theme with a dark background.
91 * Special theme constant for {@link #AlertDialog(Context, int)}: use
92 * the device's default alert theme with a light background.
113 * Construct an AlertDialog that uses an explicit theme. The actual style
115 * here supply either the name of an attribute in the theme from which
120 protected AlertDialog(Context context, int theme) {
121 this(context, theme, true);
124 AlertDialog(Context context, int theme, boolean createThemeContextWrapper) {
125 super(context, resolveDialogTheme(context, theme), createThemeContextWrapper);
339 * Set an icon as supplied by a theme attribute. e.g. android.R.attr.alertDialogIcon
341 * @param attrId ID of a theme attribute that points to a drawable resource.
383 * Constructor using a context and theme for this builder and
384 * the {@link AlertDialog} it creates. The actual theme
386 * here supply either the name of an attribute in the theme from which
393 public Builder(Context context, int theme) {
395 context, resolveDialogTheme(context, theme)));
396 mTheme = theme;
400 * Returns a {@link Context} with the appropriate theme for dialogs created by this Builder.
403 * the correct theme.
490 * Set an icon as supplied by a theme attribute. e.g.
496 * @param attrId ID of a theme attribute that points to a drawable resource.