I;m trying to change text color in EditText like this
Hint color and Text Color are two different thing use this codes
create a color.xml file in values folder
then add color #B49228 in it like this
and use it like this
android:textColor="@color/myColor"
and you are using hint text so to change hint color use this code
android:textColorHint="@color/myColor"