EditText unable to change the text color

后端 未结 4 436
再見小時候
再見小時候 2021-01-23 09:47

I;m trying to change text color in EditText like this

 

        
4条回答
  •  孤街浪徒
    2021-01-23 09:54

    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 #B49228 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"
    

提交回复
热议问题