Wednesday 24 October 2012

Clearing Bitmap Method


private void unbindDrawables(View view)
 {
  if (view.getBackground() != null)
  {
   view.getBackground().setCallback(null);
  }
  try
  {
   ((ViewGroup) view).removeAllViews();
  }
  catch (Exception e)
  {
   e.printStackTrace();
  }

 }

No comments:

Post a Comment