Glide cannot resolve asBitmap()

后端 未结 7 1701
无人共我
无人共我 2020-12-17 09:35

Why I can\'t resolve this method while using Glide also I can\'t resolve .diskstaretegy() :

Glide.with(getActivity())
                      


        
7条回答
  •  死守一世寂寞
    2020-12-17 10:17

    for the asBitmap you need to write it as follows:

    Glide.with(getActivity()).asBitmap().load(chalet.profilePhoto).into(mImageView);
    

提交回复
热议问题