P paul allen Member Licensed User Longtime User Jan 9, 2022 #1 is there an example for changing the color of an edittext color for a bunch of edittext fields?
Xandoca Active Member Licensed User Longtime User Jan 9, 2022 #2 B4X: Dim edt As EditText For Each v As B4XView In Root.GetAllViewsRecursive If edt Is EditText Then edt.color = xui.Color_Blue End If Next Upvote 0
B4X: Dim edt As EditText For Each v As B4XView In Root.GetAllViewsRecursive If edt Is EditText Then edt.color = xui.Color_Blue End If Next