14
如何为整个Android应用设置默认字体系列
我在应用中使用了Roboto light字体。要设置字体,我必须将其添加android:fontFamily="sans-serif-light"到每个视图中。有没有办法将Roboto字体声明为整个应用程序的默认字体系列?我已经尝试过这种方法,但是似乎没有用。 <style name="AppBaseTheme" parent="android:Theme.Light"></style> <style name="AppTheme" parent="AppBaseTheme"> <item name="android:fontFamily">sans-serif-light</item> </style>
282
android
android-fonts