Glide簡(jiǎn)單配置使用

添加依賴

implementation 'com.github.bumptech.glide:glide:4.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'

在RecyclerView中使用:
activity_recycle_view_image布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.pixel.myglide.RecycleViewImageActivity">
    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycleview"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_width="0dp"
        android:layout_height="0dp"/>
</android.support.constraint.ConstraintLayout>

item_re布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <ImageView
        android:id="@+id/imge"
        android:background="#000000"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_width="0dp"
        android:layout_height="0dp" android:contentDescription="@string/tp" />
</android.support.constraint.ConstraintLayout>

adapter:

class MyRecycleAdapter extends RecyclerView.Adapter<MyRecycleAdapter.ViewHolder>{

        private List<String> list;
        private Context context;
        private LayoutInflater inflater;

        public MyRecycleAdapter(Context context,List<String> list){
            this.list=list;
            this.context=context;
            this.inflater=LayoutInflater.from(context);
        }

        @Override
        public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
            return new ViewHolder(inflater.inflate(R.layout.item_re,parent,false));
        }

        @Override
        public void onBindViewHolder(ViewHolder holder, int position) {
            Glide.with(context)
                    .load(list.get(position))
                    .into(holder.imge);
        }

        @Override
        public int getItemCount() {
            return list.size();
        }

        class ViewHolder extends RecyclerView.ViewHolder{
            ImageView imge;
            public ViewHolder(View itemView) {
                super(itemView);
                imge=itemView.findViewById(R.id.imge);
            }
        }
    }

在listview中使用:

activity_list_view_image布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.pixel.myglide.ListViewImageActivity">

    <ListView
        android:id="@+id/lv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></ListView>

</LinearLayout>

item布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <ImageView
        android:id="@+id/imge"
        android:background="@mipmap/pd"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

adapter:

class MyImageAdapter extends BaseAdapter{

        private List<String> list;
        private LayoutInflater inflater;
        private Context context;

        public MyImageAdapter(Context context,List<String> list){
            this.list=list;
            this.inflater=LayoutInflater.from(context);
            this.context=context;
        }
        @Override
        public int getCount() {
            return list.size();
        }

        @Override
        public String getItem(int position) {
            return list.get(position);
        }

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

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            ViewHolder viewHolder=null;
            if (convertView==null){
                convertView=inflater.inflate(R.layout.item,parent,false);
                viewHolder=new ViewHolder();
                viewHolder.tp =convertView.findViewById(R.id.imge);
                convertView.setTag(viewHolder);
            } else{
                viewHolder= (ViewHolder) convertView.getTag();
            }
            Log.i(TAG, "getView: url==="+list.get(position));

            Glide.with(context)
                    .load(list.get(position))
                    .into(viewHolder.tp);
//            viewHolder.tp.setBackgroundResource(R.mipmap.ic_launcher_round);
            return convertView;
        }


        class ViewHolder{
            ImageView tp;
        }
    }

在listview中會(huì)出現(xiàn)圖片不顯示問(wèn)題,解決方法:
http://www.reibang.com/p/f6b933dd8b98

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市昂羡,隨后出現(xiàn)的幾起案子稳析,更是在濱河造成了極大的恐慌筐眷,老刑警劉巖驻呐,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件卧秘,死亡現(xiàn)場(chǎng)離奇詭異鳖链,居然都是意外死亡姆蘸,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門芙委,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)逞敷,“玉大人,你說(shuō)我怎么就攤上這事灌侣⊥凭瑁” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵侧啼,是天一觀的道長(zhǎng)牛柒。 經(jīng)常有香客問(wèn)我,道長(zhǎng)痊乾,這世上最難降的妖魔是什么皮壁? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮哪审,結(jié)果婚禮上蛾魄,老公的妹妹穿的比我還像新娘。我一直安慰自己湿滓,他們只是感情好滴须,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著叽奥,像睡著了一般扔水。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上朝氓,一...
    開(kāi)封第一講書(shū)人閱讀 49,031評(píng)論 1 285
  • 那天虫埂,我揣著相機(jī)與錄音耕突,去河邊找鬼济似。 笑死衍腥,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的誓竿。 我是一名探鬼主播磅网,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼筷屡!你這毒婦竟也來(lái)了涧偷?” 一聲冷哼從身側(cè)響起簸喂,我...
    開(kāi)封第一講書(shū)人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎燎潮,沒(méi)想到半個(gè)月后喻鳄,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡确封,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年除呵,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片爪喘。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡颜曾,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出秉剑,到底是詐尸還是另有隱情泛豪,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布侦鹏,位于F島的核電站诡曙,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏略水。R本人自食惡果不足惜价卤,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望渊涝。 院中可真熱鬧荠雕,春花似錦、人聲如沸驶赏。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)煤傍。三九已至,卻和暖如春嘱蛋,著一層夾襖步出監(jiān)牢的瞬間蚯姆,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工洒敏, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留龄恋,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓凶伙,卻偏偏與公主長(zhǎng)得像郭毕,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子函荣,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,504評(píng)論 25 707
  • 【Android 控件 RecyclerView】 概述 RecyclerView是什么 從Android 5.0...
    Rtia閱讀 307,380評(píng)論 27 439
  • afinalAfinal是一個(gè)android的ioc显押,orm框架 https://github.com/yangf...
    passiontim閱讀 15,401評(píng)論 2 45
  • 迪迪貸:選擇規(guī)范的P2P理財(cái)乘碑,你將受到《民法》《公司法》《合同法》等保護(hù)挖息。同時(shí)行業(yè)已經(jīng)獲得銀監(jiān)會(huì)立法,公安部保護(hù)兽肤,...
    迪迪貸閱讀 395評(píng)論 0 0
  • 《光明》 是什么輕輕拂過(guò)我的指尖 柔軟光滑 ——像月光下 絲綢般流淌的河水 是什么悄然覆上我的雙眼 冰涼纖薄 ——...
    念想miss閱讀 169評(píng)論 0 2