Gianni Sassanelli Active Member Licensed User Longtime User Feb 27, 2021 #1 Hi i need how to help for EditText with flat border I have tried to set manifest for my activyty module but unsuccessfull in attach image that i need thank's for all Attachments Request.PNG 9.5 KB · Views: 218
Hi i need how to help for EditText with flat border I have tried to set manifest for my activyty module but unsuccessfull in attach image that i need thank's for all
klaus Expert Licensed User Longtime User Feb 27, 2021 #2 You can use this code: B4X: Private cdwFrame As ColorDrawable cdwFrame.Initialize2(Colors.White, 0, 1dip, Colors.DarkGray) EditText1.Background = cdwFrame Upvote 0
You can use this code: B4X: Private cdwFrame As ColorDrawable cdwFrame.Initialize2(Colors.White, 0, 1dip, Colors.DarkGray) EditText1.Background = cdwFrame
Gianni Sassanelli Active Member Licensed User Longtime User Feb 27, 2021 #3 thank's Klaus is that i wanted Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 28, 2021 #4 I recommend using: B4X: Dim x As B4XView = EditText1 'or better change EditText1 type to B4XView x.SetColorAndBorder(xui.Colors_White, 0, 1dip, XUI.Colors_DarkGray) Cross platform and safer. Upvote 0
I recommend using: B4X: Dim x As B4XView = EditText1 'or better change EditText1 type to B4XView x.SetColorAndBorder(xui.Colors_White, 0, 1dip, XUI.Colors_DarkGray) Cross platform and safer.