赞
踩
众所周知,同样的一个话在中英文环境中的字符长度是不一样的。如果TextView没有做相应的适配,那么在切换环境之后读取xml中文本会导致UI变样。尤其是英文文本容易展示不全的问题。
在android 8 以及以上添加了用来动态改变TextView字体大小的新特性 Autosizing TextViews,只需要简单设置一下属性即可。
例如:
<TextView
android:layout_width="340dp"
android:layout_height="50dp"
android:background="@drawable/shape_bg_008577"
android:gravity="center_vertical"
android:maxLines="1"
android:text="这是标题,该标题的名字比较长,产品要求不换行全部显示出来"
android:textSize="18sp"
android:autoSizeTextType="uniform"
android:autoSizeMaxTextSize="18sp"
android:autoSizeMinTextSize="10sp"
android:autoSizeStepGranularity="1sp"/>
重点是android:autoSizeTextType="uniform"
启动自适配的方式
文件中的具体注释:
<!-- Specify the type of auto-size. Note that this feature is not supported by EditText, works only for TextView. --> <attr name="autoSizeTextType" format="enum"> <!-- No auto-sizing (default). --> <enum name="none" value="0" /> <!-- Uniform horizontal and vertical text size scaling to fit within the container. --> <enum name="uniform" value="1" /> </attr> <!-- Specify the auto-size step size if <code>autoSizeTextType</code> is set to <code>uniform</code>. The default is 1px. Overwrites <code>autoSizePresetSizes</code> if set. --> <attr name="autoSizeStepGranularity" format="dimension" /> <!-- Resource array of dimensions to be used in conjunction with <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides <code>autoSizeStepGranularity</code> if set. --> <attr name="autoSizePresetSizes"/> <!-- The minimum text size constraint to be used when auto-sizing text. --> <attr name="autoSizeMinTextSize" format="dimension" /> <!-- The maximum text size constraint to be used when auto-sizing text. --> <attr name="autoSizeMaxTextSize" format="dimension" /> <!-- Mode for justification. -->
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。