本文介绍了从XML获取尺寸并在运行时设置文本大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在dimens.xml中,我有:
In dimens.xml, I have:
<dimen name="text_medium">18sp</dimen>
在运行时,我得到此值并设置文本视图的文本大小:
In runtime, I get this value and set the text size of a text view:
int size = context.getResources().getDimensionPixelSize(R.dimen.text_medium);
textView.setTextSize(size).
在10英寸平板电脑(1280 x 800)上,一切都很好;但是在电话(800 x 480)上,文本视图的字体很大。在平板电脑上,大小等于18;在电话上是27。
On a 10″ tablet (1280 x 800), everything is ok; but on a phone (800 x 480), the text view has a very large font. On the tablet, the size equals 18; on the phone, it's 27.
如果我通过以下方式手动设置尺寸:
If I set the size manually by:
textView.setTextSize(size)
大小在两个设备上都是正常的。
the size is normal on both devices.
推荐答案
<dimen name="text_medium">18sp</dimen>
在代码中设置大小:
textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, getResources().getDimension(R.dimen.text_medium));
这篇关于从XML获取尺寸并在运行时设置文本大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!