Here's the skeleton of my XML for the main activity
<CoordinatorLayout>
<AppBarLayout>
<Toolbar/>
</AppBarLayout>
<FrameLayout/>
<BottomNavigation/>
</CoordinatorLayout>
The FrameLayout holds a fragment and here's how it looks like:
<ConstraintLayout>
<RecyclerView />
<include layout="@layout/base_list_loading"/>
<include layout="@layout/base_list_empty"/>
</ConstraintLayout>
The problem is when using your SpannedGridLayoutManager, I'm not able to scroll all the way down. It Can just scroll for like 1/8th of the page.
I also have 3 Item Types:
- Type 1 - SpanSize(2,3)
- Type 2 - SpanSize(4,3)
- Type 3 - SpanSize(4,6)
I can't use (1,1), (2,1), and (2,2) as your library changes the sizes and I need to have the layouts at the ratio for the images. It works when I use these though but then again, I need the sizes to be of that ratio.
Also, In your scrollBy function, the canScrollForward flag returns a false even though I'm haven't fully scrolled down the screen yet.
Would there be a way that we can define the size/ratio of 1 cell so as a SpanSize(1,1) can sort of look like a 2:3 square? Thanks!
Here's the skeleton of my XML for the main activity
The FrameLayout holds a fragment and here's how it looks like:
The problem is when using your SpannedGridLayoutManager, I'm not able to scroll all the way down. It Can just scroll for like 1/8th of the page.
I also have 3 Item Types:
I can't use (1,1), (2,1), and (2,2) as your library changes the sizes and I need to have the layouts at the ratio for the images. It works when I use these though but then again, I need the sizes to be of that ratio.
Also, In your
scrollByfunction, thecanScrollForwardflag returns a false even though I'm haven't fully scrolled down the screen yet.Would there be a way that we can define the size/ratio of 1 cell so as a SpanSize(1,1) can sort of look like a 2:3 square? Thanks!