我为不同的屏幕分辨率使用不同大小的文字。为此,我创建了资源values/dimens.xml
和values-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);
答案 0 :(得分:3)
getResources().getDimension(R.dimen.test)