We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConsecutiveScroller布局下,比如 <ConsecutiveScroller> <View visable="gone/> <View visable="gone/> <Recyclyview /> </ConsecutiveScroller> 当第一次未滑动时,Recyclyview之前的两个view根据判断从gone变成visiable,打开页面首先看到的是Recyclyview的布局内容,没有看到前两个view布局(被recyclyview顶上去了),如果布局一开始设置的是 <ConsecutiveScroller> <View visable="visiable/> <View visable="visiable/> <Recyclyview /> </ConsecutiveScroller> 那么第一次看到的效果就是我想要的效果,能够看到前两个被gone掉的view
<ConsecutiveScroller> <View visable="gone/> <View visable="gone/> <Recyclyview /> </ConsecutiveScroller>
<ConsecutiveScroller> <View visable="visiable/> <View visable="visiable/> <Recyclyview /> </ConsecutiveScroller>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ConsecutiveScroller布局下,比如
<ConsecutiveScroller> <View visable="gone/> <View visable="gone/> <Recyclyview /> </ConsecutiveScroller>
当第一次未滑动时,Recyclyview之前的两个view根据判断从gone变成visiable,打开页面首先看到的是Recyclyview的布局内容,没有看到前两个view布局(被recyclyview顶上去了),如果布局一开始设置的是
<ConsecutiveScroller> <View visable="visiable/> <View visable="visiable/> <Recyclyview /> </ConsecutiveScroller>
那么第一次看到的效果就是我想要的效果,能够看到前两个被gone掉的view
The text was updated successfully, but these errors were encountered: