/**

* 自定义TextView,文本内容自动调整字体大小以适应TextView的大小

* @author yzp

*/

public class AutoFitTextView extends TextView {

private Paint mTextPaint;

private float mTextSize;

public AutoFitTextView(Context context) {

super(context);

}

public AutoFitTextView(Context context, AttributeSet attrs) {

super(context, attrs);

}

/**

* Re size the font so the specified text fits in the text box assuming the

* text box is the specified width.

*

* @param text

* @param textWidth

*/

private void refitText(String text, int textViewWidth) {

if (text == null || textViewWidth <= 0)

return;

mTextPaint = new Paint();

mTextPaint.set(this.getPaint());

int availableTextViewWidth = getWidth() - getPaddingLeft() - getPaddingRight();

float[] charsWidthArr = new float[text.length()];

Rect boundsRect = new Rect();

mTextPaint.getTextBounds(text, 0, text.length(), boundsRect);

int textWidth = boundsRect.width();

mTextSize = getTextSize();

while (textWidth > availableTextViewWidth) {

mTextSize -= 1;

mTextPaint.setTextSize(mTextSize);

textWidth = mTextPaint.getTextWidths(text, charsWidthArr);

}

this.setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize);

}

@Override

protected void onDraw(Canvas canvas) {

super.onDraw(canvas);

refitText(this.getText().toString(), this.getWidth());

}

}

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐