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](http://stackoverflow.com/questions/2016249/how-to-programmatically-setting-style-attribute-in-a-view) setting a style isn't possible programmatically. How can I achieve this in Macroid??
I have an EditTextView and I would like to change the style to match the following xml:
However according to this post on StackOverflow setting a style isn't possible programmatically. How can I achieve this in Macroid??