android / android-ktx

A set of Kotlin extensions for Android app development.
https://android.github.io/android-ktx/core-ktx/
7.48k stars 565 forks source link

Extension property of bitmap from ImageView #578

Open burhanrashid52 opened 6 years ago

burhanrashid52 commented 6 years ago

Extension property to get/set bitmap from ImageView

inline var ImageView.bitmap: Bitmap?
    get() {
        val drawable = drawable as? BitmapDrawable
        return drawable?.bitmap
    }
    set(value) {
        setImageBitmap(value)
    }
burhanrashid52 commented 6 years ago

PR #579