Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想像这样使用 recyclerview 布局。“0”网格是屏幕高度的一半。“1”、“2”、“3”、“4”大小相同且可重复。当您向下滚动时,其余网格就像小网格。对不起我的坏模型。
我发现了 TwoWayView 库,但我无法自定义它。
最后我明白了:9
我可以在示例应用程序中按照以下几行更改 LayoutAdapter。
//final int span1 = (itemId == 0 || itemId == 3 ? 2 : 1); //final int span2 = (itemId == 0 ? 2 : (itemId == 3 ? 3 : 1));
变成了这个。
final int span2 = (itemId == 0 ? 2 : 1); final int span1 = (itemId == 0 ? 2 : 1);