我正在设计一个数独而不是数字而不是单词列表。对于布局,我使用了constraintLayout。 我遇到了一个问题,但是当单词太大而无法放入单元格时。知道我该如何解决吗? 抱歉,第一次在这里发布。所以不确定我是否做对了。
答案 0 :(得分:0)
您可以使用this library来使文本自动调整大小并适合视图。
使用此库,您不必担心何时更改文本大小以及是否会更改文本大小。是否适合视图。
这里的用法是:
1)为等级添加依赖项:
implementation 'me.grantland:autofittextview:0.2.1'
2)将textView添加到布局中:
<me.grantland.widget.AutofitTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textSize="12sp"
app:minTextSize="8sp" />