将TextInputLayout添加到我的Android Studio项目导致我的设计视图变为空白

mzsu5hc0  于 2023-03-11  发布在  Android
关注(0)|答案(1)|浏览(109)

我尝试从EditText切换到更复杂的TextInputLayout/TextInputEditText,但每当我添加TextInputLayout时,它都会导致我的设计视图变为空白,尽管会刷新缓存、使缓存无效以及将项目与Gradle Files同步。
附件是已实现TextInputLayout/TextInputEditText的当前视图
Non-working design view

e5nszbig

e5nszbig1#

尝试使用Bridge主题。只需将当前主题的父主题更改为Bridge主题之一。例如:
在您的style.xml中添加如下内容:

<style name="MyTheme" parent="Theme.MaterialComponents.Light.Bridge">
    <!-- ... -->
</style>

Try following this official instruction on how to get started with Material components

相关问题