gpt4 book ai didi

当 a11y 更改为大字体时,android View 宽度不会变大

转载 作者:行者123 更新时间:2023-11-29 23:38:10 39 4
gpt4 key购买 nike

我有一些代码可以测量 android textView 的宽度以及要在其中显示的文本。

final ViewTreeObserver[] viewTreeObserver = {myAccountView.getViewTreeObserver()};
viewTreeObserver[0].addOnPreDrawListener(
new OnPreDrawListener() {
@Override
public boolean onPreDraw() {
myAccountView.setText(R.string.og_my_account_desc_long_length);
int chipWidth = myAccountView.getMeasuredWidth();
if (chipWidth > 0) {
setChipTextWithCorrectLength(chipWidth);
viewTreeObserver[0] = myAccountView.getViewTreeObserver();
if (viewTreeObserver[0].isAlive()) {
viewTreeObserver[0].removeOnPreDrawListener(this);
}
}
return true;
}
});
}

private void setChipTextWithCorrectLength(int chipWidth) {
String desc =
setChipTextWithCorrectLength(
getContext().getString(R.string.og_my_account_desc_long_length),
getContext().getString(R.string.og_my_account_desc_meduim_length),
getContext().getString(R.string.og_my_account_desc_short_length),
chipWidth);
myAccountView.setText(desc);
}

@VisibleForTesting
String setChipTextWithCorrectLength(
String longDesc, String mediumDesc, String shortDesc, int clipWidth) {
if (textWidthPixels(longDesc) > clipWidth) {
if (textWidthPixels(mediumDesc) > clipWidth) {
return shortDesc;
} else {
return mediumDesc;
}
}
return longDesc;
}

public float textWidthPixels(String text) {
TextPaint textPaint = myAccountView.getPaint();
return textPaint.measureText(text);
}

我将我的设备 a11y 更改为最大的字体和最大的显示屏。

我在 UI 中看到文本被截断(省略)

enter image description here

但我的测量显示文本宽度(503 像素)小于 TextView 宽度(587 像素)。

怎么可能呢?

我应该如何以不同的方式测量它们,以便我的代码也将指示文本宽度大于 TextView 宽度?

编辑:

我尝试添加填充,但没有改变。更改为 a11y 会截断长文本而不是选择较短的文本。

  public float textWidthPixels(String text) {
TextPaint textPaint = myAccountView.getPaint();
View parent = (View) myAccountView.getParent();
float width = textPaint.measureText(text);

int paddingLeft = parent.getPaddingLeft();
int paddingRight = parent.getPaddingRight();
return width - (paddingLeft + paddingRight);

}

编辑:

我已经尝试计算 chipWidth 考虑它的填充,但 textSize 仍然使文本截断,而它在代码中的绘制大小比 View 大小短

int chipWidth = myAccountView.getMeasuredWidth() - myAccountView.getPaddingLeft() - myAccountView.getPaddingRight();

最佳答案

似乎找到了解决方案,但我想根据我的研究提出几点。

int textViewWidth = textView.getMeasuredWidth();

返回 textView 的宽度,包括任何填充。

对于封闭文本:

  1. 可以使用 measureText() :

    TextPaint paint = textView.getPaint();
    int textWidth = (int)paint.measureText(textView.getText().toString());

  2. 使用 getTextBounds()

    TextPaint paint = textView.getPaint();
    矩形边界 = new Rect(); paint.getTextBounds(textView.getText().toString(),0,textView.getText().toString().length(),bounds);
    int textWidth = bounds.width();

通过将填充值添加到 textWidth 或从 textViewWidth 中减去来比较这些值是您的比较基础。

For Difference between the above two ways

您也可以尝试 textView.getLayout().getEllipsisStart(0) 以防您的 textView 是单行的,直接作为比较基础(而不是计算宽度)。它返回文本被截断的索引,否则返回 0。

我还建议您查看 Autosizing TextViews .

支持库 26.0 为 Android 4.0(API 级别 14)及更高版本的自动调整 TextView 功能提供了全面支持。

关于当 a11y 更改为大字体时,android View 宽度不会变大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52076430/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com