Is it possible to change the typeface/textsize/color etc. of the CustomDialog title or CustomDialog buttons?
I'm basically using the code above.
I've also noticed that if the title text is too wide, the title bar will expand and make the content look unproportionate. Any way of going around this or do you need to create your own CustomDialog piece by piece?
B4X:
Dim cd As CustomDialog
Dim P As Panel
P.Initialize("")
cd.AddView(P, 0, 0, 60%x, 100%y)
cd.Show("Title", "", "Back", "", Null)
I'm basically using the code above.
I've also noticed that if the title text is too wide, the title bar will expand and make the content look unproportionate. Any way of going around this or do you need to create your own CustomDialog piece by piece?