在android中,我可以执行以下操作(均返回整数):
R.color.my_color;
对比
Resources myR = getResources();
myR.getColor(R.color.my_color);
它们都返回整数有什么区别?
在android中,我可以执行以下操作(均返回整数):
R.color.my_color;
对比
Resources myR = getResources();
myR.getColor(R.color.my_color);
它们都返回整数有什么区别?