TextInputEditText hint
TextInputEditText 클릭하면 힌트가 위로 올라가면서 작아집니다.
우선 이 색상을 선택하려면 TextInputLayout 태그에서 app:hintTextColor 속성을 선택해주면 됩니다.
app:hintTextColor="@color/color_4b6d9d" 이런식으로 속성을 정의 해주시면 됩니다.
TextInputEditText 커서
우선 조금 특이한점은 color로 설정하는 것이 아닌 drawable로 설정해야 합니다.
즉 xml 파일입니다. 그리 어려운건 아닙니다. 밑에 처럼 xml 파일 만들고 코딩하면 됩니다. 색상도 color로 속성으로 지정하면 됩니다.
TextInputEditText 안에 android:textCursorDrawable="@drawable/cursor_color" 이런식으로 속성을 정의 해주시면 됩니다.
TextInputEditText 밑줄
밑줄은 TextInputEditText 태그에서 android:backgroundTint="@color/color_4b6d9d" 속성을 정의해주시면 됩니다.
정리하자면 밑에 그림을 참고하시면 됩니다.