1

我正在使用 Material Design Components 并想更改 a 的默认样式TextInputLayout,这意味着我的更改将应用​​于所有实例,而TextInputLayout无需我style="@style/my_style"在每个实例上明确定义 a。

如果以及如何可能?

4

1 回答 1

1

您可以textInputStyle在应用主题中使用该属性。

<style name="AppTheme" parent="Theme.MaterialComponents.DayNight"> 
   <item name="textInputStyle">@style/myCustomStyle</item>
</style>
于 2020-02-07T11:52:09.367 回答