S Smee Well-Known Member Licensed User Longtime User Jun 8, 2017 #1 I would like to find out how to change the shape of an edit text box similar to the shape below Can anyone point me to a solution for such a shape converting edittext Many Thanks
I would like to find out how to change the shape of an edit text box similar to the shape below Can anyone point me to a solution for such a shape converting edittext Many Thanks
R ronell Well-Known Member Licensed User Longtime User Jun 8, 2017 #2 B4X: Dim cd As ColorDrawable cd.Initialize2(Colors.White,30dip,3dip,Colors.Black) edittext1.Background = cd Last edited: Jun 8, 2017 Upvote 0
B4X: Dim cd As ColorDrawable cd.Initialize2(Colors.White,30dip,3dip,Colors.Black) edittext1.Background = cd
S Smee Well-Known Member Licensed User Longtime User Jun 8, 2017 #3 ronell said: B4X: Dim cd As ColorDrawable cd.Initialize2(Colors.White,30dip,3dip,Colors.Black) edittext1.Background = cd Click to expand... Goodness me, It really was that simple. I had never used initialize2 before, I will now Thanks very much and for the quick answer Upvote 0
ronell said: B4X: Dim cd As ColorDrawable cd.Initialize2(Colors.White,30dip,3dip,Colors.Black) edittext1.Background = cd Click to expand... Goodness me, It really was that simple. I had never used initialize2 before, I will now Thanks very much and for the quick answer