AOSP 中的 "android:textSize" 和 "textSize" 有什么区别?

What's the different between "android:textSize" and "textSize" in AOSP?

在AOSP代码中,有很多TextView资源使用"textSize" in style.xml来限制文本大小,在正常的alllication中,他们使用"android:textSize"来限制文本大小。

那么这两者有什么区别呢?

style.xml 文件中,textSize 用于提及该样式的默认文本大小值。 因此,每当您在视图中调用该样式时,您都会获得该文本大小。

另外 android:textSize 我们硬编码了该视图的文本大小。

希望说得通。