Я работаю на экране входа в систему, где хочу реализовать редактирование текста материала в следующем виде:
![enter image description here](https://i.stack.imgur.com/Fa8XM.png)
Ниже приведен мой код:
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
style="@style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="This is Hint"/>
</com.google.android.material.textfield.TextInputLayout>
Но OutlinedBox не появляется.Вот как это выглядит:
![enter image description here](https://i.stack.imgur.com/IsJJ0.png)
PLease help.