Added Methods
|
Builder setAdapter(ListAdapter, OnClickListener)
|
Set a list of items, which are supplied by the given ListAdapter, to be
displayed in the dialog as the content, you will be notified of the
selected item via the supplied listener. |
Builder setCursor(Cursor, OnClickListener, String)
|
Set a list of items, which are supplied by the given Cursor, to be
displayed in the dialog as the content, you will be notified of the
selected item via the supplied listener. |
Builder setCustomTitle(View )
|
Set the title using the custom view {@code customTitleView}. |
Builder setInverseBackgroundForced(boolean )
|
Sets the Dialog to use the inverse background, regardless of what the
contents is. |
Builder setItems(CharSequence[], OnClickListener)
|
Set a list of items to be displayed in the dialog as the content, you will be notified of the
selected item via the supplied listener. |
Builder setMultiChoiceItems(Cursor, String, String, OnMultiChoiceClickListener)
|
Set a list of items to be displayed in the dialog as the content,
you will be notified of the selected item via the supplied listener. |
Builder setMultiChoiceItems(int, boolean[], OnMultiChoiceClickListener)
|
Set a list of items to be displayed in the dialog as the content,
you will be notified of the selected item via the supplied listener. |
Builder setMultiChoiceItems(CharSequence[], boolean[], OnMultiChoiceClickListener)
|
Set a list of items to be displayed in the dialog as the content,
you will be notified of the selected item via the supplied listener. |
Builder setOnItemSelectedListener(OnItemSelectedListener )
|
Sets a listener to be invoked when an item in the list is selected. |
Builder setOnKeyListener(OnKeyListener )
|
Sets the callback that will be called if a key is dispatched to the dialog. |
Builder setSingleChoiceItems(Cursor, int, String, OnClickListener)
|
Set a list of items to be displayed in the dialog as the content, you will be notified of
the selected item via the supplied listener. |
Builder setSingleChoiceItems(ListAdapter, int, OnClickListener)
|
Set a list of items to be displayed in the dialog as the content, you will be notified of
the selected item via the supplied listener. |
Builder setSingleChoiceItems(int, int, OnClickListener)
|
Set a list of items to be displayed in the dialog as the content, you will be notified of
the selected item via the supplied listener. |
Builder setSingleChoiceItems(CharSequence[], int, OnClickListener)
|
Set a list of items to be displayed in the dialog as the content, you will be notified of
the selected item via the supplied listener. |