VerticalViewPager icon indicating copy to clipboard operation
VerticalViewPager copied to clipboard

Vertically ViewPager and vertically transformer for Android.

Results 21 VerticalViewPager issues
Sort by recently updated
recently updated
newest added

Hi, I imported your library to my app via gradle and got a build error: "Manifest merger failed : Attribute application@allowBackup value=(false)". I guess your lib does not need this...

比如page1 有个listview; page2 grideview page3 其他布局 。。。。 这种适配不好做吧,尤其是华为手机

can we implement this in ionic app . if yes, then how can we successfully implementing this? in ionic

里面嵌套一个普通的viewpager时,该pager的setAdapter中public Object instantiateItem无法被执行,这个怎么解决

我遇到的问题是,Fragment添加SurfaceView,触摸屏幕的时候,会造成一个问题 SurfaceView 会被隐藏,显示出底部背景, 从而造成闪现背景, 最后我发现 其实子页并非在最上面,所以触摸事件被隐藏在其上面的View给消费了,我的解决方案是在VerticalViewPager中重写onPageScrolled和setPageTransformer, 下面是我的解决方案的源码 ` @Override protected void onPageScrolled(int position, float offset, int offsetPixels) { super.onPageScrolled(position, offset, offsetPixels); // 下面的源码来自super.onPageScrolled() int scrollX; int childCount; int i; if...

Great example thanks for that. Can we add List item to each fragment in a bundle? one item from list for each fragment.