为性能和内存实例化变量的最有效方法是什么?
这个 :
Context context = this;
Resources resources = context.getResources();
Drawable drawable = resources.getDrawable(R.drawable.image);
ListView list = (ListView) context.findViewById(R.id.list);
list.setBackgroundDrawable(drawable);
或这个 :
((ListView) findViewById(R.id.list)).setBackgroundDrawable(getResources().getDrawable(R.drawable.image));
或者没关系,它是一样的,所以我应该坚持我最喜欢的东西?