I have below App theme. It supports below item tags like colorPrimary, colorPrimaryDark, colorAccent. I want to know what other item tag it supports. For example: if i want to set the color of edit text that should be consistent through out the app then what item tag should i use?
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
parent="@android:style/Widget.EditText
.Now refer to this style in yourAppTheme
style using<item name="android:my_ed">@style/Edit_text_Style</item>
– Samarth Kejriwal