QuadFlask / colorpicker

🍭color picker for android
1.22k stars 219 forks source link

can not display color wheel in viewpager #63

Closed hangox closed 7 years ago

hangox commented 7 years ago

when I use it is fragment with viewpager. I found it can not display color wheel.Because It does not callback onWindowFocusChanged,so , can not create wheel bitmap.I fix it by this

@Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        updateColorWheel();
    }
QuadFlask commented 7 years ago

Thank you! I will add your code.