Reputation: 14711
EditText views shrink in size if I use this to change their color:
android:background="@android:color/white"
Why is this happening? How can I make them white and maintain their size? I dont like the default grey look they have. Same question regarding spinners...
Upvotes: 5
Views: 1492
Reputation: 5152
Try use it as edittext background and you will get an idea.Right click the image and select "save image as". When you save the image dont forget to give its extension as "9.png"
Upvotes: 0
Reputation: 46
1、You can set minHeight attribute in xml layout 2、you can set a white background image that has the same height with the system edittext's backgound image. 3、you can just set background as transparent color and a white background to it's parent view.
Upvotes: 3