android glide asbitmap 在baseadpter中的问题
问题描述
public View getView( final int position, View convertView, ViewGroup parent) { View view=convertView; if (view==null){view=layoutInflater.inflate(R.layout.lable,null); } imageview=new ImageView(getContext()); imageview= (ImageView) view.findViewById(R.id.listimageview); SimpleTarget target = new SimpleTarget<Bitmap>() {@Overridepublic void onResourceReady(Bitmap bitmap, GlideAnimation glideAnimation) { Drawable drawable = new BitmapDrawable(bitmap); Bitmap bitmap1 = ((BitmapDrawable)drawable).getBitmap(); Bitmap reflectedBitmap = BitmapUtil.createReflectedBitmap(bitmap1); BitmapDrawable drawable1 = new BitmapDrawable(reflectedBitmap); drawable1.setAntiAlias(true); imageview.setImageDrawable(drawable1);} }; Glide.with(getContext()).load(getItem(position).imgurl).asBitmap().into(target); //Glide.with(getContext()).load(getItem(position).imgurl).into(imageview);
当在baseadpter中处理gilde得到的bitmap再加载进去。。。只有最后一个item才显示然而不处理bitemap直接loadinto进去则全部显示。。。求解
问题解答
回答1:已经解决。。。glide的未操作完成便返回view
相关文章:
1. Android-Studio 新建项目 Missing styles2. android - viewpager问题PagerTabStrip样式3. Android SeekBar的thumb上方如何添加一个跟随滑动的文字?4. nginx - 关于vue项目部署到ngnix后出现的问题5. android 请问这种小效果使用什么控件实现的?6. 问题Unknown column ’’ in ’where clause’7. android studio总是在processes running好久8. android - 这样的效果怎么画,大神们求救9. 关于thinkphp 5.1中,ajax提交数据url的格式写法,加花括号就出错,请老师指点10. Android TabLayout 中如果修改下标线样式的宽度大小?