MitchBu Well-Known Member Licensed User Longtime User May 7, 2019 #1 I want to put a checkbox on a beige panel, but it remains white and very difficult to see. If I could set the checkbox color the same way as the generate members dialog in the designer, it would be just fine. I found this thread which refers to a SetCheckBoxColor sub, but the author neglected to post it or make reference to where it can be found. https://www.b4x.com/android/forum/threads/83740/#content I will appreciate any help. TIA Last edited: May 7, 2019
I want to put a checkbox on a beige panel, but it remains white and very difficult to see. If I could set the checkbox color the same way as the generate members dialog in the designer, it would be just fine. I found this thread which refers to a SetCheckBoxColor sub, but the author neglected to post it or make reference to where it can be found. https://www.b4x.com/android/forum/threads/83740/#content I will appreciate any help. TIA
Erel B4X founder Staff member Licensed User Longtime User May 7, 2019 #2 Try this: https://www.b4x.com/android/forum/threads/change-edittext-colors.87653/ Upvote 0
MitchBu Well-Known Member Licensed User Longtime User May 7, 2019 #3 Thank you Erel, but SetBackgroundTintList seems to be doing nothing on my checkbox with this: B4X: SetBackgroundTintList(CkBxSettingsWallet, Colors.Red, 0xFF0020FF) Upvote 0
Thank you Erel, but SetBackgroundTintList seems to be doing nothing on my checkbox with this: B4X: SetBackgroundTintList(CkBxSettingsWallet, Colors.Red, 0xFF0020FF)
Erel B4X founder Staff member Licensed User Longtime User May 7, 2019 #4 You are correct. You should use this: https://www.b4x.com/android/forum/threads/change-checkbox-colors.105575/ Upvote 0
You are correct. You should use this: https://www.b4x.com/android/forum/threads/change-checkbox-colors.105575/
MitchBu Well-Known Member Licensed User Longtime User May 7, 2019 #5 It works great. Thank you Erel Upvote 0