Можно ли сделать цвет текста метки в TextInputLayout отличным от цвета текста подсказки editText
<android.support.design.widget.TextInputLayout xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/layoutMargin16"
android:textColorHint="@color/green"
app:hintTextAppearance="@style/textLayoutInputSize">
<EditText
android:id="@+id/editTextFirstName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/layoutMargin16"
android:textColorHint="@color/blueColorButton"
android:hint="@string/first_name" />
</android.support.design.widget.TextInputLayout>
Однако у меня есть этот код android:textColorHint="@color/blueColorButton"
как установить для него цвет текста (другой цвет, чем у TextInputLayoutlabel) Изображение 1
Изображение 2