问题标签 [staggeredgridlayout]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - RecyclerView with StaggeredGridLayoutManager with images loading from Glide
I am having a problem showing RecyclerView
with StaggeredGridLayoutManager
whose item contain an imageview
and the image is loaded in imageview
using glide
.
The problem i am facing is that after images getting loaded they are not staggered and are of equal sizes as well there is a big gap between two columns. How to vary the height of images with no gaps in columns?
android - Android:如何创建类似 Facebook 的图片库网格?
我正在尝试实现一个类似 facebook 的画廊网格,其中项目具有不同的大小:
我试图使用不同的库/解决方案,但现在没有成功:
我尝试使用AsymemetricGridView。但是这个实现的问题是,在扔掉适配器之后,网格中会留下空的死角。
我也想过使用
StaggeredGridLayoutManager
and aRecycleView
,但是在这种情况下,项目的大小与 Facebook 库中实现的其他项目的大小不同。
现在我想在适配器中为不同的情况提供不同的视图持有者,但我真的不喜欢这个想法。有什么更好的方法来完成这项任务?
android - 使用 StaggeredGridLayout 在 Android RecyclerView 中滚动不流畅
我使用 StaggeredGridLayoutManager 创建了一个包含两列的 RecyclerView,每个项目包含 2 个图像和文本,第一个图像的大小可以是(284*572、840*401 或 283*232)第二个 35*35 和一个文本,列表看起来不错,但问题是当用户向下滚动时滚动不流畅且不连续,图像是从本地存储(可绘制)中获取的,我们可以做些什么来批准滚动体验。
FantasyTabAdapter.java
在片段中设置 RecyclerView
android - 如何使用 staggeredGridLayoutManager 将 headerview 添加到 recyclerview
我想用 staggeredGridLayoutManager 将像 listview 这样的 headerview 添加到 recyclerview 中。我搜索了所有库,只找到了这个RecyclerHeaderView,但是这个库对 LinearLayoutManager 或 GridLayoutManager 有限制。是否可以为 staggeredGridLayout 添加 headerview?
android - 单击时,我的 RecyclerView 项目混淆了位置?
我在 RecyclerView 中选择项目时遇到问题。当我单击时,项目出现紫色覆盖,但是当我滚动到另一个屏幕时,它会出现另一个项目,当我向后滚动时,旧项目覆盖消失。我不知道发生了什么:(如何解决它???
RecyclerView_Adapter
themeblue_item_recyclerview
OrderActivity:您只需专注于 runOnUiThread 和 lvDetailMiddle
android - StaggeredGridLayoutManager 错位(二)
同样的问题,不知道这算不算重复。
我对 Android 的StaggeredGridLayoutManager
. 问题的描述与StaggeredGridLayoutManager dislocation几乎相同。
这是截图(抱歉审查,那些是CardViews
):
和适配器:
上一个问题和这个问题所做的事情是以ImageView
编程方式更改宽度和高度。为什么改变View
的布局有影响RecyclerView
?
android - 尝试从空对象引用上的字段 StaggeredGridLayoutManager$Span.mIndex 读取
我在对话框片段上使用 RecyclerView 和 StaggeredGridLayoutManager。它被称为搜索片段。
我的问题是当我更改数据(进行其他查询以从服务器获取其他数据)时,我在项目 0 和项目 1 之间的顶部有一个巨大的空白空间。如果我向上滚动,我将看到新数据,但之后应用程序崩溃。
日志猫:
搜索片段:
搜索适配器
}
请注意,我将每个项目高度更改为 wrap_content!
谢谢!