你好,我想同样的字体系列设置为整个Android应用程序。 我已经看到了这是否可以设置应用程序的整个自定义字体? 但是这一切都做得使用代码。 我想设置的Theme
,使得其将在所有工作。 它应该的字体系列转换ActionBar
的文字也。
没有办法做到这一点?
styles.xml
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>