Я пытаюсь создать метод для изменения многострочного текста в TextView
, чтобы он соответствовал границам (как размерам X, так и Y) TextView
.
В настоящее время у меня есть что-то, но все, что он делает, изменяет размер текста таким образом, что только первая буква/символ текста заполняет размеры TextView
(т.е. только первая буква доступна для просмотра, и она огромна), Мне нужно, чтобы он соответствовал всем строкам текста в пределах TextView.
Вот что я до сих пор:
public static void autoScaleTextViewTextToHeight(TextView tv)
{
final float initSize = tv.getTextSize();
//get the width of the view 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
.