I tried to use autoSizeTextType. My minSdk is 24, all tools are 26 and compat ist 26-beta2.
The ability to configure them was tested using the code:
dialogWeight.touchables.filterIsInstance<Button>().forEach {
TextViewCompat.setAutoSizeTextTypeWithDefaults(it,
TextViewCompat.AUTO_SIZE_TEXT_TYPE_UNIFORM) }
And xml:
<android.support.v7.widget.AppCompatTextView
android:layout_height="match_parent"
android:text="7"
android:autoSizeTextType="uniform"/>
Any ideas? I'm starting to believe that he is being tapped
source
share