Lines Matching defs:Builder

151      * @see Builder#setCustomTitle(View)
279 public static class Builder {
293 public Builder(@NonNull Context context) {
323 public Builder(@NonNull Context context, @StyleRes int themeResId) {
330 * Returns a {@link Context} with the appropriate theme for dialogs created by this Builder.
345 * @return This Builder object to allow for chaining of calls to set methods
347 public Builder setTitle(@StringRes int titleId) {
355 * @return This Builder object to allow for chaining of calls to set methods
357 public Builder setTitle(@Nullable CharSequence title) {
375 * @return this Builder object to allow for chaining of calls to set
378 public Builder setCustomTitle(@Nullable View customTitleView) {
386 * @return This Builder object to allow for chaining of calls to set methods
388 public Builder setMessage(@StringRes int messageId) {
396 * @return This Builder object to allow for chaining of calls to set methods
398 public Builder setMessage(@Nullable CharSequence message) {
408 * @return This Builder object to allow for chaining of calls to set methods
410 public Builder setIcon(@DrawableRes int iconId) {
422 * @return this Builder object to allow for chaining of calls to set
425 public Builder setIcon(@Nullable Drawable icon) {
439 public Builder setIconAttribute(@AttrRes int attrId) {
451 * @return This Builder object to allow for chaining of calls to set methods
453 public Builder setPositiveButton(@StringRes int textId, final OnClickListener listener) {
464 * @return This Builder object to allow for chaining of calls to set methods
466 public Builder setPositiveButton(CharSequence text, final OnClickListener listener) {
477 * @return This Builder object to allow for chaining of calls to set methods
479 public Builder setNegativeButton(@StringRes int textId, final OnClickListener listener) {
490 * @return This Builder object to allow for chaining of calls to set methods
492 public Builder setNegativeButton(CharSequence text, final OnClickListener listener) {
503 * @return This Builder object to allow for chaining of calls to set methods
505 public Builder setNeutralButton(@StringRes int textId, final OnClickListener listener) {
516 * @return This Builder object to allow for chaining of calls to set methods
518 public Builder setNeutralButton(CharSequence text, final OnClickListener listener) {
527 * @return This Builder object to allow for chaining of calls to set methods
529 public Builder setCancelable(boolean cancelable) {
544 * @return This Builder object to allow for chaining of calls to set methods
548 * @return This Builder object to allow for chaining of calls to set methods
550 public Builder setOnCancelListener(OnCancelListener onCancelListener) {
558 * @return This Builder object to allow for chaining of calls to set methods
560 public Builder setOnDismissListener(OnDismissListener onDismissListener) {
568 * @return This Builder object to allow for chaining of calls to set methods
570 public Builder setOnKeyListener(OnKeyListener onKeyListener) {
579 * @return This Builder object to allow for chaining of calls to set methods
581 public Builder setItems(@ArrayRes int itemsId, final OnClickListener listener) {
591 * @return This Builder object to allow for chaining of calls to set methods
593 public Builder setItems(CharSequence[] items, final OnClickListener listener) {
607 * @return This Builder object to allow for chaining of calls to set methods
609 public Builder setAdapter(final ListAdapter adapter, final OnClickListener listener) {
625 * @return This Builder object to allow for chaining of calls to set methods
627 public Builder setCursor(final Cursor cursor, final OnClickListener listener,
651 * @return This Builder object to allow for chaining of calls to set methods
653 public Builder setMultiChoiceItems(@ArrayRes int itemsId, boolean[] checkedItems,
677 * @return This Builder object to allow for chaining of calls to set methods
679 public Builder setMultiChoiceItems(CharSequence[] items, boolean[] checkedItems,
705 * @return This Builder object to allow for chaining of calls to set methods
707 public Builder setMultiChoiceItems(Cursor cursor, String isCheckedColumn, String labelColumn,
730 * @return This Builder object to allow for chaining of calls to set methods
732 public Builder setSingleChoiceItems(@ArrayRes int itemsId, int checkedItem,
755 * @return This Builder object to allow for chaining of calls to set methods
757 public Builder setSingleChoiceItems(Cursor cursor, int checkedItem, String labelColumn,
779 * @return This Builder object to allow for chaining of calls to set methods
781 public Builder setSingleChoiceItems(CharSequence[] items, int checkedItem, final OnClickListener listener) {
801 * @return This Builder object to allow for chaining of calls to set methods
803 public Builder setSingleChoiceItems(ListAdapter adapter, int checkedItem, final OnClickListener listener) {
815 * @return this Builder object to allow for chaining of calls to set methods
818 public Builder setOnItemSelectedListener(final AdapterView.OnItemSelectedListener listener) {
828 * @return this Builder object to allow for chaining of calls to set
831 public Builder setView(int layoutResId) {
849 * @return this Builder object to allow for chaining of calls to set
852 public Builder setView(View view) {
873 * @return This Builder object to allow for chaining of calls to set
883 public Builder setView(View view, int viewSpacingLeft, int viewSpacingTop,
900 * @return This Builder object to allow for chaining of calls to set methods
906 public Builder setInverseBackgroundForced(boolean useInverseBackground) {
915 public Builder setRecycleOnMeasureEnabled(boolean enabled) {