You can add custom font in Custom Dialog. Just add one label in Custom Dialog
Example:
B4X:
Dim Sonda As Typeface
Sonda = Typeface.LoadFromAssets("wurm.ttf")
Dim dialog As CustomDialog
Dim lb As Label
lb.Initialize(dialog)
lb.Typeface = Sonda
lb.TextSize = 16
lb.Text = "This is my text what I write for B4A forum." _
&CRLF& "Ho Ho Ho Ho" _
&CRLF& CRLF& _
"Today is a beautiful day here in Croatia :)"
dialog.AddView(lb, 0dip, 0dip, 100%x, 100%y)
dialog.Show("My Title", "OK", "Cancel", "No", LoadBitmap(File.DirAssets, "nfo.png"))
I have a rooted LG Optimus one one which I'm trying to develop a small app. I would like to use a certain font I've extracted from another phone ('SJlover.ttf')
I included this font file in the assets, and compiled (with no errors), and yet, no joy.
The text is being seen as the original default font.
Could this be bacause of the fact that The Optimus One does not have a font select option in the settings?