我在申请中经常使用?android:attr/textAppearanceSmall
和?android:attr/textAppearanceMedium
。我知道?android:attr/textAppearanceSmall
默认为font-size
14sp
,?android:attr/textAppearanceMedium
默认为font-size
18sp
。
现在,我们的测试团队希望font-size
的{{1}}为?android:attr/textAppearanceSmall
。有没有办法,我们可以覆盖这些值,这样我就不必逐屏访问屏幕并逐行替换它们。
答案 0 :(得分:1)
如果有人正在处理类似的问题,我只是想出了答案。
我在AppTheme
<item name="android:textAppearanceSmall">@style/AppTheme.TextAppearance.Small</item>
然后我创建了一个新的style
喜欢
<style name="AppTheme.TextAppearance.Small" parent="TextAppearance.AppCompat.Small">
<item name="android:textSize">16sp</item>
</style>
谢谢