I know there are some classes or libraries that implement a custom toast message.
I just want to know if today (2018) is possible to alter the background color of a classic toast message?
For example see this: http://code2care.org/2015/change-android-toast-background-color/
How to implement this in B4A please?
Thank you!
Dim cs As CSBuilder
ToastMessageShow(cs.Initialize.Size(20).Color(Colors.Black).Append("Pick a client.").BackgroundColor(Colors.White).PopAll, True)
On some devices background color is white, on others (Android 6+) is gray/black - this mean that BackgroundColor(Colors.White) does not do it's job
TO @DonManfred I am not so good as others to java, even if it is a small wrapper.
Indeed. But even if it were, the background color of a toast (not af a text) will be whatever OS choose it to be. Is there a "hack" for it? Reflection perhaps?