我正在将 autosize textview 与 appcompat 一起使用,但我遇到了一个问题,我不知道您是否曾经遇到过。
如果我有一个具有最大和最小文本大小、固定宽度和高度、重心到中心的文本视图,并且文本太长以至于它应该是椭圆形的,我不知道为什么,但有些字符在开始时被剪切了。
让我给你看一下代码:
有这个布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="24dp"
android:layout_marginStart="40dp"
android:layout_marginEnd="40dp"
android:gravity="center"
android:letterSpacing="0.2"
android:maxLines="1"
app:autoSizeTextType="uniform"
app:autoSizeMaxTextSize="16sp"
app:autoSizeMinTextSize="14sp"
app:fontFamily="@font/apercu_medium"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
/>
...
</androidx.constraintlayout.widget.ConstraintLayout>
对于诸如“12345 67 89 012345678 90123456 7890123 45 67890123”之类的长文本,文本在开头意外被剪切,如下所示。
但是,如果我将 Textview 重力设置为 start 和 center_vertically,它会正确显示。
顺便说一句,我正在使用版本为 1.1.0-rc01 的 androidx.appcompat:appcompat。
提前致谢!