我不明白为什么我的价值text_size
没有解决?
这是我的代码:
this.menuTextePaint.setTextSize(TypedValue.COMPLEX_UNIT_PX,context.getResources().getDimension(R.dimen.text_size));
dimens.xml
位于值目录
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen
name="text_size"
>8sp</dimen>
</resources>
我收到了消息:text_size cannot be resolved or is not a field
非常感谢你的帮助!
答案 0 :(得分:0)
对于未来的用户,这是导入问题。
text_size
存在于项目资源中,而不存在于Android资源中,因此导入net.mypackage.R;
而不是android.R;
会修复错误。