我很难弄清楚 TextView 中使用的 autoSizeText 的问题。
信息:我有一个活动会向用户显示应用提示。提示将每 n 秒自动更改一次。我遇到的问题是具有 autoSizeText 的 TextView (android:id="@+id/tipDescription")。
默认 textSize 为 30sp,maxTextSize 也是 30sp,minTextSize 为 10sp。
当带有 autoSizeText 的 TextView 设置包含大量字符的文本时,textSize 会减小,这很好。即使 TextView 中的文本恢复到适合视图的正常长度,当 textSize 保持相同(小)时也会出现问题。
例子:
文本 1:“开始文本” - textSize 为 30sp
文本 2:“Lorem Ipsum 只是印刷和排版行业的虚拟文本。自 1500 年代以来,Lorem Ipsum 一直是该行业的标准虚拟文本。” - textSize 相应减小。
文本 3:“结束文本” - textSize 现在与文本 2 相同,但太小了。
我正在寻找一种解决方案,当文本恢复到正常长度时,它将重置 textSize(恢复到 30sp)。
XML (activity_main.xml)
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_margin="40dp"
android:background="#444"
android:padding="12dp"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/tipTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="TITLE"
android:textColor="#FF00FF"
android:textSize="26sp"
android:textStyle="bold" />
<TextView
android:id="@+id/tipSubtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="SUBTITLE"
android:textColor="#80FFFFFF"
android:textSize="14sp" />
<TextView
android:id="@+id/tipDescription"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="top|center"
android:text="Start text"
android:textColor="#FFF"
android:textSize="30sp"
app:autoSizeMaxTextSize="30sp"
app:autoSizeMinTextSize="10sp"
app:autoSizeTextType="uniform" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
Java (MainActivity.java)
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tipDescription = findViewById(R.id.tipDescription);
new Handler().postDelayed(() -> tipDescription.setText("Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s."), 2000);
new Handler().postDelayed(() -> tipDescription.setText("End text"), 4000);
}
}
我已经尝试过tipDescription.setTextSize但它不适用于启用 autoSizeText。
我正在使用android:layout_height="wrap_content"使所有内容都垂直居中在父 LinearLayout 中(tipSubtitle 在tipTitle 下方,tipDescription 在tipSubtitle 下方)。