Fixing memory leak in WallpaperCropActivity

issue 15516788

Change-Id: I6feb4cb72052bc7f19e9c30957bff7dcccd5bc9d
This commit is contained in:
Sunny Goyal
2014-07-22 09:39:01 -07:00
parent 82cc3fe6c7
commit e9bacd9c2b

View File

@@ -133,6 +133,14 @@ public class WallpaperCropActivity extends Activity {
setCropViewTileSource(bitmapSource, true, false, onLoad);
}
@Override
protected void onDestroy() {
if (mCropView != null) {
mCropView.destroy();
}
super.onDestroy();
}
public void setCropViewTileSource(
final BitmapRegionTileSource.BitmapSource bitmapSource, final boolean touchEnabled,
final boolean moveToLeft, final Runnable postExecute) {