you can change Underline of EditText color specifying it in styles.xml. In your app theme styles.xml add the following.
<item name="android:textColorSecondary">@color/primary_text_color</item>
As pointed out by ana in comment section
<item name="android:colorControlActivated">@color/black</item>
setting this in theme style works well for changing color of an edittext underline.