こんにちは、私はあなたのAndroidアプリケーションで自動サイズ調整のテキストビューを使用しています。私のアプリケーションminSdkVersionは19ですので、サポートライブラリを使用しています。 自動サイズ調整のテキストビューが機能していません
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.app.android.registration.RegistrationActivity"
tools:ignore="missingPrefix">
<include
android:id="@+id/toolbar_registration_layout"
layout="@layout/toolbar" />
<TextView
android:id="@+id/textview_registration_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/lato_medium"
android:padding="8dp"
android:text="@string/registration_title"
app:autoSizeTextType="uniform"
app:layout_constraintTop_toBottomOf="@id/toolbar" />
</android.support.constraint.ConstraintLayout>
https://developer.android.com/guide/topics/ui/look-and-feel/autosizing-textview.html
は、誰もがそれの右側に利用可能なスペースがたくさんあるとして、それがリサイズされていない理由を知っています。
は先生をすることができないのに役立ちます、
TextView
希望の
android:layout_height
に固定値を渡す必要があり、@IntelliJAmiya – UltimateDevil@UltimateDevilを得ましたポイント。あなたは静的な高さを追加する必要があります –
MyPleasure Sir、@IntelliJAmiya :) – UltimateDevil