Android Glide CustomTarget ,kotlin

Android Glide CustomTarget ,kotlin

 

        val target = object : CustomTarget() {
            override fun onResourceReady(resource: Bitmap, transition: Transition?) {
                findViewById(R.id.image_view).setImageBitmap(resource)
            }

            override fun onLoadCleared(placeholder: Drawable?) {
                
            }
        }

        Glide.with(this)
            .asBitmap()
            .load(image_file.path)
            .into(target)

 

 

android Glide CustomViewTarget,java_zhangphil的博客-CSDN博客【代码】android Glide CustomViewTarget,java。https://blog.csdn.net/zhangphil/article/details/129493334Android Glide预加载preload ,kotlin_zhangphil的博客-CSDN博客【代码】Android Paging 3,kotlin(1)在实际的开发中,虽然Glide解决了快速加载图片的问题,但还有一个问题悬而未决:比如用户的头像,往往用户的头像是从服务器端读出的一个普通矩形图片,但是现在的设计一般要求在APP端的用户头像显示成圆形头像,那么此时虽然Glide可以加载,但加载出来的是一个矩形,如果要Glide_android 毛玻璃圆角。《Android图片加载与缓存开源框架:Android Glide》Android Glide是一个开源的图片加载和缓存处理的第三方框架。https://blog.csdn.net/zhangphil/article/details/131635804

 

你可能感兴趣的:(kotlin,Android,android,kotlin)