码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2017-03-23 22:27:05      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:str   联系   protected   his   add   paint   return   ondraw   att   

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

/** 
 * 自定义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的大小

标签:str   联系   protected   his   add   paint   return   ondraw   att   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6607546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!