Stulish Active Member Licensed User Longtime User Nov 16, 2020 #1 Hi Guys, i have changed the colors of the text in a combo box depending on if the display is set to day ot night mode, however the little arrow at the side remains the same (see pictures): Can anyone tell me how to change the arrow color. Many thanks
Hi Guys, i have changed the colors of the text in a combo box depending on if the display is set to day ot night mode, however the little arrow at the side remains the same (see pictures): Can anyone tell me how to change the arrow color. Many thanks
mangojack Expert Licensed User Longtime User Nov 16, 2020 #2 B4X: Dim jo As JavaObject = ComboBox1.cmbBox.Background jo.RunMethod("setColorFilter", Array(xui.Color_Red, "SRC_ATOP")) Upvote 0
B4X: Dim jo As JavaObject = ComboBox1.cmbBox.Background jo.RunMethod("setColorFilter", Array(xui.Color_Red, "SRC_ATOP"))
Stulish Active Member Licensed User Longtime User Nov 17, 2020 #3 Thanks @mangojack it worked a treat Upvote 0