Exemplo n.º 1
0
 // 单例模式获取实例
 public static ImageLoader getInstance() {
   if (null == mImageLoader) {
     newInstance();
   }
   return mImageLoader;
 }