views:

47

answers:

2

I need to change the dialog's typeface to use an external font that supports some unicode characters. Unfortunately, there is no AlertDialog.setTypeFace() method available...

Any ideas?

A: 

You should be able to create your own dialog with a custom view, say with a TextView that has the custom font in it.

smith324
A: 

I used setAdapter(), and it works fine. Thanks for your help.

Hadi