I have an EditTextView and I would like to change the style to match the following xml:
<style name="login_field" parent="android:Widget.EditText">
<item name="colorControlNormal">@color/DarkGreen</item>
<item name="colorControlActivated">@color/SeaGreen</item>
<item name="colorControlHighlight">@color/SeaGreen</item>
</style>
However according to this post on StackOverflow setting a style isn't possible programmatically. How can I achieve this in Macroid??