我想知道如何默认隐藏
屏幕旋转或setText()显示时同理
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/addressTextInputLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:endIconMode="clear_text"
app:hintEnabled="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/label2">
<EditText
android:layout_width="match_parent"
android:layout_height="44dp"
android:hint=""
android:text="test"
android:inputType="text"
android:padding="10dp" />
</com.google.android.material.textfield.TextInputLayout>