Android Question customdialog changing color and size text

zapicoj

Member
Licensed User
Longtime User
Is it posible to change attributes like color and size on title and dialog buttons (positive, cancel, negative) into the custom dialogs ? (B4A V8.00)

Appreciate any advise.
thx
 

zapicoj

Member
Licensed User
Longtime User
Excelent.
First link worked for me, with a small modification.
Thank you.

Following code works:
B4X:
Private dialog As CustomLayoutDialog
dialog.GetButton(DialogResponse.POSITIVE).TextColor = Colors.Green
dialog.GetButton(DialogResponse.POSITIVE).TextSize = 24
 
Upvote 0
Top