텍스트크기가 자동으로 조절되는 코드입니다. if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) { TextViewCompat.setAutoSizeTextTypeUniformWithConfiguration( txtView, minTextSize, maxTextSize, autoSizeStepGranularity, TypedValue.COMPLEX_UNIT_SP ) } else { txtView.setAutoSizeTextTypeUniformWithConfiguration( minTextSize, maxTextSize, autoSizeStepGranularity, TypedValue.COMPLEX_UNIT_SP ) } 감사합니다.