gpt4 book ai didi

android - TwoWay View 自动添加空白区域

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:02:21 25 4
gpt4 key购买 nike

双向 View 是一个强大的库,可以使用 RecyclerView

自定义组件网格

下面是我们在使用这个库时遇到的问题的截图,所以我找到了那个问题的解决方案,

enter image description here

Reference Question

Padding problem #140

Items changing height results in empty space #156

与此问题相关的其他问题可能是

Q:1 - Gridview 项目在滚动时改变顺序

问题 2 - 使用 UniversalImageLoader 加载图像时 UI 困惑

最佳答案

经过几个月的搜索,我找到了解决上述问题的方法。

我要一步步解释

首先keep你必须使用TwoWay-View的代码库不是 jar。

  1. Open layout folder of library.
  2. Browse the package org.lucasr.twowayview.widget
  3. Open BaseLayoutManager class
  4. Jump to Line no. 362
  5. You will found code as

    if (anchorItemPosition > 0 && (refreshingLanes || !restoringLanes))
    {

    replace this line by this one

    if (anchorItemPosition > 0 && refreshingLanes && !restoringLanes) {

BaseLayoutManager 类 中的上述更改对我来说是解决上述问题的方法。

希望这对所有 TwoWay-View 用户有帮助。

关于android - TwoWay View 自动添加空白区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29137920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com