【发布时间】:2022-02-02 08:52:56
【问题描述】:
我知道 TextView 和 AppCompatTextView 之间的区别。但是 TextView 和 MaterialTextView 呢?细微差别是什么?而我们什么时候需要使用MaterialTextView呢?
【问题讨论】:
标签: android textview material-components-android
我知道 TextView 和 AppCompatTextView 之间的区别。但是 TextView 和 MaterialTextView 呢?细微差别是什么?而我们什么时候需要使用MaterialTextView呢?
【问题讨论】:
标签: android textview material-components-android
根据官方文档here
MaterialTextView 支持所有标准属性 更改为 AppCompatTextView。与 AppCompatTextView 不同的是 仅支持在视图布局 XML 中指定行高, MaterialTextView 支持从 TextAppearance 样式,可应用于 MaterialTextView 使用样式属性或使用 android:textAppearance 属性
.
【讨论】: