zoukankan      html  css  js  c++  java
  • Android Fast ImageLoader

    前段时间写的Android平台开源项目:Fast ImageLoader,现在分享给大家

    源码地址:https://github.com/cumtkangyi/Android-Fast-ImageLoader

     Android Fast ImageLoader

    A cool image cache for Android platform.

    Play Store Demo

    Android Permission

    1 <uses-permission android:name="android.permission.INTERNET"/>
    2 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    3 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

    Sample Code

    ImageView imageView = new ImageView(mContext);
    /*如下代码可以放在application中初始化*/
    CC.init(getApplicationContext(), "Test", R.drawable.ic_launcher);
    
    String url = "http://h.hiphotos.baidu.com/image/pic/item/b8014a90f603738d26724c24b11bb051f819ecf8.jpg";
    CC.bind(url, imageView);

    If you want to load with progress bar, please perform the following code:

    ImageView imageView = new ImageView(mContext);
    ProgressBar progressBar = new ProgressBar(mContext);
    /*如下代码可以放在application中初始化*/
    CC.init(getApplicationContext(), "Test", R.drawable.ic_launcher);
    
    String url = "http://h.hiphotos.baidu.com/image/pic/item/b8014a90f603738d26724c24b11bb051f819ecf8.jpg";
    CC.bind(url, imageView, new DefaultCallback(imageView, progressBar));

    Alipay Account

    kangyi888cumt@163.com

    Developed By

    • Leo Kang, Ning Dai
    • Email: cumtkangyi@gmail.com
    • License

      Copyright 2012-2014 Leo.Kang Ning.Dai

      Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

     

  • 相关阅读:
    利息基础理论
    本地数据库
    线上一个数组查询遇到的坑
    老兵的十年职场之路(二)
    老司机心得之时间管理"入坑"
    补习系列(19)-springboot JPA + PostGreSQL
    PostGreSQL(1)-源码安装
    补习系列(18)-springboot H2 迷你数据库
    SpringBoot 2 要不要升级
    补习系列(17)-springboot mongodb 内嵌数据库
  • 原文地址:https://www.cnblogs.com/kangyi/p/imageloader.html
Copyright © 2011-2022 走看看