这两个的效果一样,那么有什么区别呢?
个人认为应该区别主要是在于实际应用中的效率问题。
icCallMissed.setBackgroundResource(R.drawable.ic_calllog_missed);
我们可以看到它是通过资源文件中去寻找drawable。那么对于经常使用到的图片,我们可以让它作为一个成员变量来使用
即:
在onCreate的时候就读取一次资源文件将它转为Drawable对象。
icCallMissed = myContext.getResources().getDrawable(R.drawable.ic_calllog_missed);
接下去当需要改变背景的时候,我们不需要再去资源文件中去找,而是可以通过:
icCallMissed .setBackgroundDrawable(icCallOutgoing);
网友评论