tags:

views:

50

answers:

1

Hi,

Is there a way to configure how the header of an alert dialog looks? It nows has an icon (on the left) with text as title. Is there a way to add view on the same line?

Thank you.

+2  A: 

As far as I know, you can't add an additional view to the title. However, you can use a custom title with AlertDialog.Builder.setCustomTitle(View). If you just wanted to replace the icon or text, you could use setIcon() or setTitle(), respectively.

Erich Douglass