以编程方式实现RadioButton的不同文本大小

时间:2015-06-10 13:27:15

标签: android

我为不同的屏幕分辨率使用不同大小的文字。为此,我创建了资源values/dimens.xmlvalues-sw720dp/dimens.xml。但是,我不明白在以编程方式创建dimens.xml时如何使用RadioButton中的值?

RadioButton newRadioButton = new RadioButton(this);

newRadioButton.setTextSize(30); //how to use the values from  dimens.xml?
newRadioButton.setTextColor(Color.parseColor("#002060"));

radiogroup.addView(newRadioButton, layoutParams);

1 个答案:

答案 0 :(得分:3)

getResources().getDimension(R.dimen.test)