daimajia / AndroidSwipeLayout

The Most Powerful Swipe Layout!
MIT License
12.38k stars 2.67k forks source link

Items automatically close when toggle views #273

Closed yamila-fraiman closed 8 years ago

yamila-fraiman commented 8 years ago

When I change the visibility of an ImageView inside the surface, the swipe layout is closed automatically. I'am just doing:

cartView.setVisibility(product.cartAmount == 0 ? View.GONE : View.VISIBLE);

yamila-fraiman commented 8 years ago

I resolved! I used INVISIBLE instead of GONE.