gpt4 book ai didi

android - 如何缩放/调整文本大小以适合 TextView?

转载 作者:行者123 更新时间:2023-11-29 00:46:22 24 4
gpt4 key购买 nike

我正在尝试创建一种方法来调整 TextView 中的多行文本大小使其适合 TextView 的边界(X 和 Y 维度) .

目前,我有一些东西,但它所做的只是调整文本的大小,以便文本的第一个字母/字符填充 TextView 的尺寸。 (即只有第一个字母是可见的,而且它很大)。我需要它来适应 TextView 范围内的所有文本行。

这是我目前所拥有的:

public static void autoScaleTextViewTextToHeight(TextView tv)
{
final float initSize = tv.getTextSize();
//get the width of the view's back image (unscaled)....
float minViewHeight;
if(tv.getBackground()!=null)
{
minViewHeight = tv.getBackground().getIntrinsicHeight();
}
else
{
minViewHeight = 10f;//some min.
}
final float maxViewHeight = tv.getHeight() - (tv.getPaddingBottom()+tv.getPaddingTop())-12;// -12 just to be sure
final String s = tv.getText().toString();

//System.out.println(""+tv.getPaddingTop()+"/"+tv.getPaddingBottom());

if(minViewHeight >0 && maxViewHeight >2)
{
Rect currentBounds = new Rect();
tv.getPaint().getTextBounds(s, 0, s.length(), currentBounds);
//System.out.println(""+initSize);
//System.out.println(""+maxViewHeight);
//System.out.println(""+(currentBounds.height()));

float resultingSize = 1;
while(currentBounds.height() < maxViewHeight)
{
resultingSize ++;
tv.setTextSize(resultingSize);

tv.getPaint().getTextBounds(s, 0, s.length(), currentBounds);
//System.out.println(""+(currentBounds.height()+tv.getPaddingBottom()+tv.getPaddingTop()));
//System.out.println("Resulting: "+resultingSize);
}
if(currentBounds.height()>=maxViewHeight)
{
//just to be sure, reduce the value
tv.setTextSize(resultingSize-1);
}
}
}

我认为问题在于使用 tv.getPaint().getTextBounds(...) .它总是返回文本边界的小数字......相对于 tv.getWidth() 较小和 tv.getHeight()值...即使文本大小远大于 TextView 的宽度或高度.

最佳答案

MavenCentral 的 AutofitTextView 库可以很好地处理这个问题。源代码托管在 Github(1k+ 星)上 https://github.com/grantland/android-autofittextview

将以下内容添加到您的 app/build.gradle

repositories {
mavenCentral()
}

dependencies {
implementation 'me.grantland:autofittextview:0.2.+'
}

在代码中启用任何扩展 TextView 的 View :

AutofitHelper.create(textView);

在 XML 中启用任何扩展 TextView 的 View :

<me.grantland.widget.AutofitLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
/>
</me.grantland.widget.AutofitLayout>

在代码或 XML 中使用内置的 Widget:

<me.grantland.widget.AutofitTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
/>

关于android - 如何缩放/调整文本大小以适合 TextView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6163106/

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