In android, how can I set the font colour and font style for the ENTIRE Activity
or Fragment
at once, so I don't have to set it to each and every TextView
?
Setting Font Setting for the entire Activity
2.1k Views Asked by PeakGen At
2
There are 2 best solutions below
2

create a style.xml in your res->values folder and put your entries
<?xml version="1.0" encoding="utf-8"?>
resources>
<style name="stylingtextview" parent="@android:style/TextAppearance.Medium">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
and then in all of your textviews use this
<TextView
android:id="@+id/textview"
style="@style/stylingtextview" />
This is my custom textview class,
In xml, i used my custom textview instead of defalut Textview,
or you need to set only textstyle means, in you styles.xml add this piece of code,
and in your xml layout add this