Android 自定义TextView实现文本内容自动调整字体大小以适应TextView的大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 自定义TextView实现文本内容自动调整字体大小以适应TextView的大小相关的知识,希望对你有一定的参考价值。

最近做通讯录小屏机 联系人姓名显示--长度超过边界字体变小

/** 
 * 自定义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());  
    }  
}  

  

以上是关于Android 自定义TextView实现文本内容自动调整字体大小以适应TextView的大小的主要内容,如果未能解决你的问题,请参考以下文章

android ExpandableTextView-自定义可以动态展开/收缩显示长文本的TextView

android ExpandableTextView-自定义可以动态展开/收缩显示长文本的TextView

Android 自定义 View-->TextView 的展开 & 收起(文本折叠)

“Android Utils“ 实现TextView 区域自定义点击

“Android Utils“ 实现TextView 区域自定义点击

“Android Utils“ 实现TextView 区域自定义点击