use of com.taobao.weex.ui.component.WXImage in project incubator-weex by apache.
the class WXImageView method autoReleaseImage.
public void autoReleaseImage() {
if (enableBitmapAutoManage) {
if (!isBitmapReleased) {
isBitmapReleased = true;
WXImage image = getComponent();
if (image != null) {
image.autoReleaseImage();
}
}
}
}
Aggregations