Search code examples
androidandroid-layoutandroid-edittextandroid-styles

Change color of EditText android


I have an EditText on Dark background. My EditTexts are of black color only(if not focused), so not visible properly. How can I change the color? Below is the screenshot. Screenshot


Solution

  • Your question is about the Android theme stuff.Maybe you should set your theme's colorControlNormal value.Just like below:

    <style name="Theme.App.Base" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorControlNormal">#YOUR COLOR HEER</item>
    </style>
    

    reference here.