I am trying to change the default EditText
style, I have done it with the TextView
style the following way:
<style name="MyTextViewStyle" parent="android:Widget.TextView">
<item name="android:textColor">@color/pink</item>
<item name="android:textSize">@dimen/textSize</item>
</style>
And using it as the android:textViewStyle style
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<item name="android:textViewStyle">@style/MyTextViewStyle</item>
</style>
How can I achieve the same with an EditText
?