其他分享
首页 > 其他分享> > android – 在RecyclerView中自动调整TextViews会导致文本大小减小

android – 在RecyclerView中自动调整TextViews会导致文本大小减小

作者:互联网

我试图在RecyclerView中使用Autosizing TextViews,但是当我滚动几次时,文本变得如此之小以至于它显然无法正常工作.

我的TextView示例:

<android.support.v7.widget.AppCompatTextView
        android:id="@+id/textview_unit_title"
        android:layout_width="@dimen/tile_image_size"
        android:layout_height="wrap_content"
        android:maxLines="2"
        android:textSize="@dimen/medium_size"
        android:textColor="@color/color_text"
        android:paddingTop="@dimen/padding_title"
        android:layout_marginRight="2dp"
        android:layout_marginEnd="2dp"
        app:autoSizeMaxTextSize="@dimen/style_medium"
        app:autoSizeTextType="uniform"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toRightOf="@id/imageview_unit_icon"
        app:layout_constraintTop_toTopOf="parent"/>

我应该以编程方式在其他地方更新此扩展还是有另一种解决方案?

解决方法:

Autosizing TextViews

Android 8.0(API级别26)允许您指示TextView根据TextView的特征和边界自动扩展或收缩文本大小以填充其布局.

Note: If you set autosizing in an XML file, it is not recommended to
use the value “wrap_content” for the layout_width or layout_height
attributes of a TextView. It may produce unexpected results.

你应该绑定高度

 android:layout_height="30dp"

标签:android,android-textview,android-textview-autosize
来源: https://codeday.me/bug/20190910/1799056.html