我在我的应用程序中使用可滑动容器,并且最近注意到我现在可以通过缓慢地将其关闭但在它完全关闭之前停止而将其保持在半关闭状态。当发生这种情况时,它似乎弄乱了显示屏,并允许向右滑动,即使我没有左侧的组件。
Container c = new MoveListContainer(movesToDisplay.get(i));
SwipeableContainer swipeableContainer = new SwipeableContainer(null,
new BottomSwipeContainer(movesToDisplay.get(i)), c) ;
知道为什么会发生这种情况或者我怎么能确保它一直关闭? 感谢。