how to create responsive font size in android studio


Autosizing TextViews


just use this

<TextView
     
android:layout_width="match_parent"
     
android:layout_height="200dp"
     
app:autoSizeTextType="uniform"
     
app:autoSizeMinTextSize="12sp"
     
app:autoSizeMaxTextSize="100sp"
     
app:autoSizeStepGranularity="2sp" />

Post a Comment

Thank you

Previous Post Next Post