如何把android textView字体大小固定写死,而不随系统设置字体大小的改变而改变。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何把android textView字体大小固定写死,而不随系统设置字体大小的改变而改变。相关的知识,希望对你有一定的参考价值。
如,当把系统字体设置为超大是,textView就显示不全了。
sp是字体的单位,dp一般是宽,高等的单位,但是不同的机器有不同的密度,hdpi,mdpi,ldpi,xhdpi,在这些密度下,以sp、dp为单位,那么最终都会转换成px单位下的值,所以,你用px为单位就是固定值。 参考技术A 设置字体属性textsize为固定值 参考技术B android:textSize="16sp"--------------------------------------------------------
更多疑问解答,尽在@安卓互助平台 新浪微博 参考技术C 应该是单位的问题,dp,sp,px你试一下看,应该有一个是不会变的本回答被提问者采纳
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字体大小固定写死,而不随系统设置字体大小的改变而改变。的主要内容,如果未能解决你的问题,请参考以下文章
Android - 如何自动调整 TextView 的大小以适合固定高度的容器?
如何根据加载的文本增加我的android textview中的文本大小?