В поле edit text есть hint. При нажатие на него он подымается вверх, а как сделать так что бы он удалялся при нажатие на него? Что бы он был как placeholder в html.
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/input_layout_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:maxLength="15"
android:drawableTint="@color/colorLogoBlack"
android:drawableRight="@drawable/ic_profile_con"
android:textSize="16sp"
android:id="@+id/input_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="phone"
android:hint="@string/phone" />