mancj / SlideUp-Android

SlideUp is a small library that allows you to add sweet slide effect to any view.
MIT License
1.64k stars 207 forks source link

Disabling gesture and loggin doesn't work #46

Closed orikl84 closed 6 years ago

orikl84 commented 7 years ago
mSlideUp = new SlideUpBuilder(mContactUsView)
                .withStartState(SlideUp.State.HIDDEN)
                .withStartGravity(Gravity.BOTTOM)
                .withGesturesEnabled(false)
                .withLoggingEnabled(true)
                .build();

I can still drag the view and I don't see any logs

Gounlaf commented 6 years ago

Hi,

            .withLoggingEnabled(true)

Setting it to false works.

For the gesture problem, you are right. I think it come from library/src/main/java/com/mancj/slideup/SlideUp.java#L527