Can I get the default hint color of an EditText?
I guess you could use this:
final ColorStateList colors = editText.getHintTextColors();
editText.setTextColor(colors);
Note that hint color is actually a ColorStateList.
Late response (but worth it). You can use:
<EditText
...
android:textColor="?android:attr/textColorHint" />