The following code shows how you could prepare a custom style for all TextView widgets.
<style name="CustomTheme.TextView" parent="android:Widget.TextView">
<item name="android:background">@color/viewBackground</item>
<item name="android:textColor">@color/viewTextColor</item>
<item name="android:textSize">@denim/viewTextSize</item>
</style>
How do I fix the following custom style for all ImageView widgets? I'm asking since I can't seem to find any such Widget.
<style name="CustomTheme.ImageView" parent="android:Widget.???">-->
</style>
The only Image related Widgets, in the list, are ImageButton and ImageWell.