Add summary/additional text to alertDialog single choice items

android, android-alertdialog

Solution

Google says:

"Because the list appears in the dialog's content area, the dialog cannot show both a message and a list": http://developer.android.com/guide/topics/ui/dialogs.html

It seems that buttons, message and multiple choice items are exclusive. If you want to have both message and multiple choice item, you'll have to do something custom with your own DialogFragment

Problem

Is there a way to add a summary or a additional text to a alertDialog with single choice items? I'd like to have a bold header and a small text with some extra informations.

Original source

Related problems