使用 #recycle() 后应回收类型化数组
Posted
技术标签:
【中文标题】使用 #recycle() 后应回收类型化数组【英文标题】:Typed Array should be recycled after use with #recycle() 【发布时间】:2014-02-16 17:39:23 【问题描述】:我的代码显示此警告消息:
类型数组在使用#recycle() for obtainedTypedArray
后应该被回收
代码:
public View getView(int i, View view, ViewGroup viewgroup)
ImageView imageview;
if (view == null)
imageview = new ImageView(b);
imageview.setLayoutParams(new android.widget.AbsListView.LayoutParams(110, 110));
imageview.setPadding(1, 1, 1, 1);
imageview.setAdjustViewBounds(false);
imageview.setScaleType(android.widget.ImageView.ScaleType.CENTER_CROP);
else
imageview = (ImageView)view;
imageview.setImageResource(a.getResources().obtainTypedArray(0x7f050000).getResourceId(i, -1)); //*warning*Typed Array should be recycled after use with #recycle()
return imageview;
【问题讨论】:
所以,我认为你最好创建一个类型化数组,使用 gainTypedArray 设置它,然后使用 ta.recyle();一旦你不再需要它(即在 return 语句之前)。 好友显示错误The method recyle() is undefined for the type MainActivity
是的。事实上,您应该回收您的类型化数组,而不是活动。在我的评论中,我说的是 ta.recycle();,而不是 this.recycle();。这不是错字。 “ta”代表“类型化数组”,你应该在使用 imageview.setImageResource 之前创建的......
所以你告诉我把imageview.recycle();
放在return语句结束之前?
不,不,不。 ta.recycle(); 假设你设置了 TypedArray ta = ... 然后你使用它,然后你回收它。
【参考方案1】:
你应该抓住你从obtainTypedArray()
回来的TypedArray
,并在使用后拨打recycle()
。
此外,硬编码像 0x7f050000
这样的十六进制值不太可能是正确的答案。
【讨论】:
@MojoJojo 你不(不应该)硬编码它。请改用名称,例如R.id.foo
。【参考方案2】:
在obtainTypedArray()
语句的末尾使用recycle();
。
不要使用hex
值,将来可能会导致代码复杂化。
【讨论】:
以上是关于使用 #recycle() 后应回收类型化数组的主要内容,如果未能解决你的问题,请参考以下文章
Bitmap、Bitmap.recycle()、WeakReferences 和垃圾回收
Android系统中Bitmap是不是有调用recycle方法的必要性