1. 程式人生 > >ImageLoader載入圖片

ImageLoader載入圖片

1.建立一個App繼承Application(APP的頁面)

//優先於所有頁面(Activity)建立
//主要負責應用全域性初始化
//該物件也是一個context

public class App extends Application {

@Override
public void onCreate() {
    super.onCreate();

    //ctrl + h 檢視累的繼承結構
    //MemoryCache

    //DiskCache

    //FileNameGenerator

    //怎麼呼叫api
    //要什麼引數
    //怎麼給這個引數

    //Builder
    //構建模式
    //鏈式呼叫
    //全域性配置
    ImageLoaderConfiguration configuration = null;
    DisplayImageOptions options = new DisplayImageOptions.Builder()
            .build();
    //try {

    //
        configuration = new ImageLoaderConfiguration.Builder(this)
                //配置:記憶體 磁碟 快取
                //.memoryCache(new LruMemoryCache())
                //.memoryCacheSize()
                //記憶體快取大小
                .memoryCacheSizePercentage(10)
                //配置磁碟快取:目錄 檔名生成  大小
                //.diskCache(new LruDiskCache(getCacheDir(), new HashCodeFileNameGenerator(), 10*1024*1024))
                .diskCacheSize(50*1024*1024)
                //執行緒配置
                //任務優先順序配置
                //FIFO
                //載入圖片1   2  3  4  5
                //LIFO
                //.tasksProcessingOrder(QueueProcessingType.)
                //預設顯示配置
                //.defaultDisplayImageOptions(options)
                .build();
    //} catch (IOException e) {
    //    e.printStackTrace();
    //}

    //初始化:只有第一次初始化有效果
    ImageLoader.getInstance().init(configuration);

    //無效果
    //ImageLoader.getInstance().init(null);
}
}

2.介面卡的頁面

public class MyBaseAdafter extends BaseAdapter {
private Context context;
private List<Bean.DataBean>mlist;
public MyBaseAdafter(Context context) {
    this.context = context;
    mlist = new ArrayList<>();
}
public void setListData(List<Bean.DataBean> list){
        this.mlist = list;
        notifyDataSetChanged();
}
    @Override
    public int getCount() {
        return mlist.size();
    }

@Override
public Bean.DataBean getItem(int position) {
    return mlist.get(position);
}

@Override
public long getItemId(int position) {
    return position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    final ViewHoder viewHoder;
    if(convertView==null){
        convertView = LayoutInflater.from(context).inflate(R.layout.item,parent,false);
        viewHoder = new ViewHoder();
        viewHoder.textView1 = convertView.findViewById(R.id.textview1);
        viewHoder.textView2 = convertView.findViewById(R.id.textview2);
        viewHoder.imageView = convertView.findViewById(R.id.imageview);
        convertView.setTag(viewHoder);
    }else{
        viewHoder = (ViewHoder) convertView.getTag();
    }
    viewHoder.textView1.setText(mlist.get(position).getNews_title());
    viewHoder.textView2.setText(mlist.get(position).getNews_summary());

    // 1280 * 720   -> 1280 * 720   *   每個畫素佔用位元組數16
    //

    //RGB_565       red green blue     紅綠藍 的顏色      r佔5byte   g佔6byte    b佔5byte
    //A RGB_4444 A RGB_8888
    //ALPHA_8

    //BitmapDisplayer

    DisplayImageOptions options = new DisplayImageOptions.Builder()
            //配置色彩模式
            .bitmapConfig(Bitmap.Config.RGB_565)
            //配置  是否快取
            .cacheInMemory(true)
            .cacheOnDisk(true)
            //配置 預設顯示
            .showImageOnLoading(R.mipmap.ic_launcher)
            .showImageOnFail(R.mipmap.ic_launcher)
            .showImageForEmptyUri(R.mipmap.ic_launcher)

            //配置圖片如何縮放
            .imageScaleType(ImageScaleType.EXACTLY)

            //顯示效果:圓形
            //.displayer(new CircleBitmapDisplayer())
            //圓角
            //.displayer(new RoundedBitmapDisplayer(8))
            .displayer(new FadeInBitmapDisplayer(2000))
            .build();

   //載入圖片
    ImageLoader
            .getInstance()
            .displayImage(getItem(position).getPic_url(), viewHoder.imageView, options);

    //只加載圖片
    //回撥返回bitmap
    //ImageLoader.getInstance().loadImage();

    return convertView;
}
class ViewHoder{
    private TextView textView1,textView2;
    private ImageView imageView;
}
}

3.Util工具類,裡面封裝了JSON解析的方法,介面----(單例模式)

public class NetUtil {
//單例
private static NetUtil instance;

//私有構造方法
private NetUtil() {
}

//提供方法,獲取物件
public static NetUtil getInstance() {
    if(instance == null) {
        instance = new NetUtil();
    }
    return instance;
}

///////////////////普通get請求

public interface Callbak<T>{
    void onSuccess(T t);
}

///執行一個網路請求,通過回撥返回結果
public void getRequest(final String urlStr, final Class clazz, final Callbak callbak) {
    new AsyncTask<String, Void, Object>(){
        @Override
        protected Object doInBackground(String... strings) {
            return getRequest(urlStr, clazz);
        }

        @Override
        protected void onPostExecute(Object o) {
            callbak.onSuccess(o);
        }
    }.execute(urlStr);
}


//執行一個網路請求,返回bean
public <T> T getRequest(String urlStr, Class clazz) {
    return (T) new Gson().fromJson(getRequest(urlStr), clazz);
}

//執行一個網路請求,返回String結果
public String getRequest(String urlStr) {
    String result = "";
    try {
        URL url = new URL(urlStr);
        HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
        urlConnection.setRequestMethod("GET");
        urlConnection.setConnectTimeout(5000);
        urlConnection.setReadTimeout(5000);
        int responseCode = urlConnection.getResponseCode();
        if(responseCode == 200) {
            result = stream2String(urlConnection.getInputStream());
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
    return result;
}

private String stream2String(InputStream is) throws IOException {
    StringBuilder sb = new StringBuilder();

    BufferedReader br = new BufferedReader(new InputStreamReader(is));
    for (String tmp = br.readLine(); tmp != null; tmp = br.readLine()) {
        sb.append(tmp);
    }

    return sb.toString();
}
}

4.MainActivity頁面

public class MainActivity extends AppCompatActivity {

private ListView news;
private MyBaseAdafter mAdapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    news = findViewById(R.id.news);
    mAdapter = new MyBaseAdafter(this);
    news.setAdapter(mAdapter);

    findViewById(R.id.left).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            //載入資料
            NetUtil.getInstance().getRequest("http://api.expoon.com/AppNews/getNewsList/type/1/p/1", Bean.class, new NetUtil.Callbak<Bean>() {
                @Override
                public void onSuccess(Bean o) {
                    mAdapter.setListData(o.getData());
                }
            });
        }
    });
}
}

5.當前Json解析的Bean類

public class Bean {

/**
 * status : 1
 * info : 獲取內容成功
 * data : [{"news_id":"13811","news_title":"深港澳臺千里連線,嘉年華會今夏入川","news_summary":"6月17\u201420日,\u201c2016成都深港澳臺嘉年華會\u201d(簡稱嘉年華會)將在成都世紀城國際會展中心舉辦。其主辦方勵展華博借力旗","pic_url":"http://f.expoon.com/sub/news/2016/01/21/887844_230x162_0.jpg"},{"news_id":"13810","news_title":"第14屆溫州國際汽車展4月舉行 設9大主題展館","news_summary":"來自前不久舉行的溫州國際汽車展覽會第一次新聞釋出會的訊息, 2016第14屆溫州國際汽車展覽會定於4月7-10日在溫州國","pic_url":"http://f.expoon.com/sub/news/2016/01/21/580828_230x162_0.jpg"},{"news_id":"13808","news_title":"第十二屆中國(南安)國際水暖泵閥交易會 四大亮點","news_summary":"第十二屆中國(南安)國際水暖泵閥交易會將於2月10日至12日(即農曆正月初三至初五)在成功國際會展中心拉開帷幕。","pic_url":"http://f.expoon.com/sub/news/2016/01/21/745921_230x162_0.jpg"},{"news_id":"13805","news_title":"2016上海燈光音響展 商機無限,一觸即發","news_summary":"2016上海國際專業燈光音響展即日起全面啟動,海內外高階演藝裝置商貿平臺,商機無限,一觸即發。6大洲,80個國家,25,","pic_url":"http://f.expoon.com/sub/news/2016/01/21/158040_230x162_0.jpg"},{"news_id":"13804","news_title":"第四屆南京國際佛事展5月舉行","news_summary":"2016年,\u201c第四屆南京國際佛事文化用品展覽會\u201d將於5月26-29日在南京國際展覽中心舉辦。","pic_url":"http://f.expoon.com/sub/news/2016/01/21/865222_230x162_0.jpg"},{"news_id":"13802","news_title":"上海國際牛仔服裝博覽會 拓展國際貿易大市場","news_summary":"2016年第三屆上海國際牛仔服裝博覽會將於4月19-21日再次璀璨再現上海世博展覽館,共同探討牛仔流行趨勢,詮釋牛仔文化","pic_url":"http://f.expoon.com/sub/news/2016/01/20/370858_230x162_0.jpg"},{"news_id":"13800","news_title":"第三屆蘭州年貨會在甘肅國際會展中心本月19日開幕","news_summary":"由中國商業聯合會、甘肅省商業聯合會、蘭州市商務局主辦,甘肅省酒類商品管理局、蘭州市城關區商務局、第十四屆西安年貨會組委會","pic_url":"http://f.expoon.com/sub/news/2016/01/20/868385_230x162_0.jpg"},{"news_id":"13799","news_title":"首屆移動拍賣藝術博覽會啟動","news_summary":"首屆移動拍賣博覽會已於2016年1月全面啟動,由大咖拍賣主辦,聯合全國藝術機構共同打造拍賣藝術博覽會主會場,近百場拍賣專","pic_url":"http://f.expoon.com/sub/news/2016/01/20/768695_230x162_0.jpg"},{"news_id":"13798","news_title":"武漢金融理財投資博覽會將在5月舉辦","news_summary":"由武漢市貿促會、上海《理財週刊》社、湖北好博塔蘇斯展覽有限公司等單位聯合發起的\u201c2016武漢金融理財投資博覽會\u201d,將在武","pic_url":"http://f.expoon.com/sub/news/2016/01/20/512947_230x162_0.jpg"},{"news_id":"13796","news_title":"第三屆中國微商博覽會 3月底濟南舉辦","news_summary":"2015年,沸點天下開創了微商行業第一個展會\u2014\u2014中國微商博覽會,並於2015年成功舉行兩屆,讓微商展會從無到有,並且起了","pic_url":"http://f.expoon.com/sub/news/2016/01/20/348021_230x162_0.jpg"},{"news_id":"13793","news_title":"2016中國西部國際絲綢博覽會","news_summary":"\u201c2016年中國西部國際絲綢博覽會\u201d最新確定於2016年5月11日至15日在南充舉行。據悉,\u201c絲博會\u201d的會徽、會標及宣傳","pic_url":"http://f.expoon.com/sub/news/2016/01/19/113912_230x162_0.jpg"},{"news_id":"13792","news_title":"中國針棉織品交易會開拓\u201c西部市場\u201d","news_summary":"由國家商務部重點支援、中國紡織品商業協會主辦的第98屆中國針棉織品交易會將於3月15日~17日綻放成都。作為中國國內針棉","pic_url":"http://f.expoon.com/sub/news/2016/01/19/650175_230x162_0.jpg"},{"news_id":"13791","news_title":"樂山市第二十屆房地產展示交易會開幕","news_summary":"美麗樂山,生態宜居。今日,樂山市第二十屆房地產展示交易會在該市中心城區樂山廣場開幕,展會將持續到1月24日。","pic_url":"http://f.expoon.com/sub/news/2016/01/19/321787_230x162_0.jpg"},{"news_id":"13790","news_title":"2016華中屋面與建築防水技術展3月即將開幕","news_summary":"由湖北省建築防水協會聯合湖南、河南、江西、安徽五省建築防水協會主辦\u201c2016第二屆華中屋面與建築防水技術展覽會\u201d將於20","pic_url":"http://f.expoon.com/sub/news/2016/01/19/376254_230x162_0.jpg"},{"news_id":"13789","news_title":"2016海南國際旅遊貿易博覽會召開新聞釋出會","news_summary":"近日,三亞旅遊官方網從海南省\u201c首屆海博會\u201d新聞釋出會上獲悉,海南省\u201c首屆海博會\u201d將於2016年3月26日至4月1日在三亞","pic_url":"http://f.expoon.com/sub/news/2016/01/19/958046_230x162_0.jpg"},{"news_id":"13788","news_title":"2016阿里巴巴·貴州年貨節展銷會開幕","news_summary":"\u201c2016阿里巴巴·貴州年貨節\u201d的展銷會及迎春廟會昨日啟動。150多家餐飲商參與的美食節、近千個品種組成的年貨展銷會等,","pic_url":"http://f.expoon.com/sub/news/2016/01/19/371688_230x162_0.jpg"},{"news_id":"13787","news_title":"第二屆中國盆栽花卉交易會\u200b 本月28日開幕","news_summary":"據廣州市政府獲悉,經中國花卉協會和廣州市政府批准,第二屆中國盆栽花卉交易會將於本月28日至31日在廣州花卉博覽園舉行。屆","pic_url":"http://f.expoon.com/sub/news/2016/01/18/687647_230x162_0.jpg"},{"news_id":"13786","news_title":"李益:視野、品質、融合是展覽工程國際化的必由路徑","news_summary":"\u201c視野、品質、融合是中國展覽工程走向國際化的必由路徑。\u201d北京逸格天驕國際展覽有限公司副總經理李益日前在第二十二屆國際(常","pic_url":"http://f.expoon.com/sub/news/2016/01/18/343556_230x162_0.jpg"},{"news_id":"13785","news_title":"第八屆中國國際整合住宅產業博覽會將於5月在廣州舉辦","news_summary":"2016年1月14日,第八屆中國(廣州)國際整合住宅產業博覽會暨2016亞太建築科技論壇\u2014\u2014新聞釋出會在廣州館隆重召開。","pic_url":"http://f.expoon.com/sub/news/2016/01/18/581830_230x162_0.jpg"},{"news_id":"13784","news_title":"絲綢之路敦煌國際文化博覽會籌備工作進展順利","news_summary":"近日,絲綢之路(敦煌)國際文化博覽會組委會第二次會議在蘭召開。會議研究討論了省直廳局一對一服務保障沿線省區市方案、文博會","pic_url":"http://f.expoon.com/sub/news/2016/01/18/656693_230x162_0.jpg"}]
 */

private List<DataBean> data;

public List<DataBean> getData() {
    return data;
}

public void setData(List<DataBean> data) {
    this.data = data;
}

public static class DataBean {
    /**
     * news_id : 13811
     * news_title : 深港澳臺千里連線,嘉年華會今夏入川
     * news_summary : 6月17—20日,“2016成都深港澳臺嘉年華會”(簡稱嘉年華會)將在成都世紀城國際會展中心舉辦。其主辦方勵展華博借力旗
     * pic_url : http://f.expoon.com/sub/news/2016/01/21/887844_230x162_0.jpg
     */

    private String news_title;
    private String news_summary;
    private String pic_url;

    public String getNews_title() {
        return news_title;
    }

    public void setNews_title(String news_title) {
        this.news_title = news_title;
    }

    public String getNews_summary() {
        return news_summary;
    }

    public void setNews_summary(String news_summary) {
        this.news_summary = news_summary;
    }

    public String getPic_url() {
        return pic_url;
    }

    public void setPic_url(String pic_url) {
        this.pic_url = pic_url;
    }
}

}