Answers for "deafult font size in android"

2

android studio for textview, font-size

android:textSize="32dp"
Posted by: Guest on July-10-2021
0

ANDROID DISABLE CHANGE FONT SIZE IN APP

in android mainactivity add after any @Override

    @Override
    protected void attachBaseContext(Context newBase) {
        super.attachBaseContext(newBase);
        final Configuration override = new Configuration(newBase.getResources().getConfiguration());
        override.fontScale = 1.0f;
        applyOverrideConfiguration(override);
    }
Posted by: Guest on July-21-2021

Code answers related to "deafult font size in android"

Browse Popular Code Answers by Language