Android Question msgbox & csbuilder question

Zeev Goldstein

Well-Known Member
Licensed User
Longtime User
hi,

got this as a reply to another post

B4X:
                Msgbox( cs.Initialize.Alignment("ALIGN_NORMAL").Typeface(Typeface.FONTAWESOME).Color(Colors.Black).Size(14).Append(MyText).PopAll, _
                        cs.Initialize.Alignment("ALIGN_CENTER").Typeface(Typeface.FONTAWESOME).Color(Colors.RGB(0,128,128)).Size(30).Append("MsgHeader").PopAll)
how can i add another line to the msgtext but with a different font size for example 12

thanks
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

Zeev Goldstein

Well-Known Member
Licensed User
Longtime User
The Link describes the new CustomDialog possibilities.
You can create a Dialog box like you wish.

You can not change the Android MsgBox layout. But with the CustomDialog you can create your own.
thanks,
not sure we’re on the same page.
the code i use changes the font size in the msgbox - this works fine
i can set font size and it allows me to use longer text for messahe.
now, i would like to have most of the text in one size and an element in another size (smaller)

the example you sent as far as i could see (and understand) are for either input dialog or time controlled dialog
i do not need dataentry...
by the way - in the custome dialog on the link - i couldn't find where i set the prompt for the input fields - like first name to be changed to "eye color"
 
Upvote 0
Top