Is it possible to set font size to automatically match_parent
?
My TextView
is already width/height="match_parent"
but the font size is small and doesn't fit to the parent size.
How to do that?
autoSizeMaxTextSize is the maximum size of textview it will take autoSizeMinTextSize is the minimum size of textview it will take and autoSizeStepGranularity is the size of each step.
You can adjust the size in the Text Size submenu of the View menu or by pressing Ctrl+I (increase font size), Ctrl+D (decrease font size) and Ctrl+0 (normal font size).
android:textSize specifies the font size.
android:autoSizeTextType="uniform"
add this line to your TextView
Edit: this line will work for api 26 and higher so if you want to use it for api lower than 26 use this
app:autoSizeTextType="uniform"
if adding this line gives you error ignore the error by adding
tools:ignore="MissingPrefix"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With