// 单例模式获取实例
 public static ImageLoader getInstance() {
   if (null == mImageLoader) {
     newInstance();
   }
   return mImageLoader;
 }