最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Android 自定义TextView实现文本内容自动调整字体大小
时间:2022-06-25 23:24:06 编辑:袖梨 来源:一聚教程网
| 代码如下 | 复制代码 |
/** * 自定义TextView,文本内容自动调整字体大小以适应TextView的大小 * @author yzp */ publicclassAutoFitTextViewextendsTextView { privatePaint mTextPaint; privatefloatmTextSize; publicAutoFitTextView(Context context) { super(context); } publicAutoFitTextView(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 */ privatevoidrefitText(String text,inttextViewWidth) { if(text ==null|| textViewWidth <=0) return; mTextPaint =newPaint(); mTextPaint.set(this.getPaint()); intavailableTextViewWidth = getWidth() - getPaddingLeft() - getPaddingRight(); float[] charsWidthArr =newfloat[text.length()]; Rect boundsRect =newRect(); mTextPaint.getTextBounds(text,0, text.length(), boundsRect); inttextWidth = 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 protectedvoidonDraw(Canvas canvas) { super.onDraw(canvas); refitText(this.getText().toString(),this.getWidth()); } } | |
相关文章
- 植物大战僵尸杂交版金盏吸金磁能力解析 07-26
- 异梦残响晏景明详细介绍 异梦残响晏景明属性技能 07-26
- 逆战未来怪物血条数值详解 07-26
- 原神6.3奇馈宝箱位置在哪 奇馈宝箱位置大全 07-26
- 逆战未来新手游戏界面设置指南 07-26
- 鹅鸭杀地图及模式解锁问答一览 07-26