在安卓中可以对一个相同的字体提取一个相同的样式,有利于复用,提高代码质量。
例如在values下的style下创建样式如下:
<style name="CodeFont" parent="Base.TextAppearance.AppCompat.Medium">
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_width">match_parent</item>
<item name="android:textColor">@color/colorAccent</item>
<item name="android:textSize">30sp</item>
</style>
然后在xml文件中进行引用。
<TextView
style="@style/CodeFont"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
然后就可以显示出对应样式的字体了。