CustomDialog title appearance

IamBot

Member
Licensed User
Longtime User
Is it possible to change the typeface/textsize/color etc. of the CustomDialog title or CustomDialog buttons?


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?
 

specci48

Well-Known Member
Licensed User
Longtime User
Hello IamBot,

some of your requests can be done with my SPDialogs library which supports richstrings for title and button labels.


specci48
 
Upvote 0
Top