gpt4 book ai didi

android - 使 StaggeredGridLayout 包装内容

转载 作者:搜寻专家 更新时间:2023-11-01 08:45:10 25 4
gpt4 key购买 nike

我需要在线性布局中显示交错网格。

enter image description here

为此,我在 android.support.v7.widgetRecyclerView 上使用了 StaggeredGridLayoutManager。问题是 StaggeredGridLayoutManager 不支持 wrap_content

还有其他问题解决这个问题,但它们与线性布局有关,而不是交错网格:

据我所知,我可以派生 StaggeredGridLayoutManager 并实现 onMeasure。有没有办法在不自己重新计算 child 的位置和大小的情况下做到这一点?查看 StaggeredGridLayoutManager.java source 时,我可以看到它使用 ScrollbarHelper 来近似滚动内容的大小。有没有办法重用它?

最佳答案

问题在于,当绘制 RecyclerView 时,它会在绘制下一个元素之前自行计算所有剩余大小,并且在绘制其他元素后不再重新计算,将它们留在屏幕之外。

这个问题有一个简单的解决方法:诀窍是先绘制所有其他元素,最后留下 RecyclerView。使用相对布局并将 RecyclerView 放在 XML 布局文件的最后。由于使用相对布局,您可以独立于 XML 文件中的顺序将每个元素放在任何您想要的位置,您将在 RecyclerView 之前绘制所有元素,这将使其计算准确的剩余空间并且 wrap_content 将正常工作。

在 RecyclerView 下方添加分页栏的示例:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
tools:context=".MainActivity"
>

<LinearLayout
android:id="@+id/pagination_btns"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true"> //HERE YOU ALIGN THIS ELEMENT TO THE BOTTOM OF THE PARENT
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/previous_btn_label"/>
<Space
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/next_btn_label"/>
</LinearLayout>

<android.support.v7.widget.RecyclerView
android:id="@+id/items_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:layout_above="@id/pagination_btns"/> //HERE YOU ALIGN THE RECYCLERVIEW ABOVE THE PAGINATION BAR


</RelativeLayout>

关于android - 使 StaggeredGridLayout 包装内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29118146/

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