How to Add Very Small and Extra Small in Font Size in Settings
Jc James Lee > Mediatek Android Art and Dev Reborn
#Guide #Share
Tested on 5.0
How to Add Very Small and Extra Small in Font Size in Settings..
open Settings/res/values/arrays.xml
replace your <string-array name="entries_font_size">........ </string-array>
with this
<string-array name="entries_font_size">
<item>Very Small</item>
<item>Extra Small</item>
<item>Small</item>
<item>Normal</item>
<item>Large</item>
<item>Extra large</item>
</string-array>
and
Replace your <string-array name="entryvalues_font_size">...... </string-array>
with this
<string-array name="entryvalues_font_size">
<item>0.7</item>
<item>0.8</item>
<item>0.9</item>
<item>1.0</item>
<item>1.1</item>
<item>1.15</item>
</string-array>
Save. Decompile. Sign. Push.
Comments
Post a Comment