gpt4 book ai didi

android - 如何设置 RecyclerView 应用程序 :layoutManager ="" from XML?

转载 作者:IT老高 更新时间:2023-10-28 12:58:07 26 4
gpt4 key购买 nike

如何设置RecyclerView来自 XML 的布局管理器?

    <android.support.v7.widget.RecyclerView
app:layoutManager="???"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

最佳答案

您可以查看文档:

Class name of the Layout Manager to be used.

The class must extend androidx.recyclerview.widget.RecyclerViewView$LayoutManager and have either a default constructor or constructor with the signature (android.content.Context, android.util.AttributeSet, int, int)

If the name starts with a '.', application package is prefixed. Else, if the name contains a '.', the classname is assumed to be a full class name. Else, the recycler view package (androidx.appcompat.widget) is prefixed

使用 androidx,您可以使用:

<androidx.recyclerview.widget.RecyclerView
xmlns:app="http://schemas.android.com/apk/res-auto"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager">

通过支持库,您可以使用:

<android.support.v7.widget.RecyclerView
xmlns:app="http://schemas.android.com/apk/res-auto"
app:layoutManager="android.support.v7.widget.GridLayoutManager" >

您还可以添加以下属性:

  • android:orientation = "horizo​​ntal|vertical":控制LayoutManager的方向(eg:LinearLayoutManager)
  • app:spanCount:设置GridLayoutManager
  • 的列数

例子:

<androidx.recyclerview.widget.RecyclerView
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="2"
...>

或:

<androidx.recyclerview.widget.RecyclerView
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:orientation="vertical"
...>

您也可以使用 tools 命名空间(即 tools:orientationtools:layoutManager)添加它们然后它只会影响 IDE 预览,您可以继续在代码中设置这些值。

关于android - 如何设置 RecyclerView 应用程序 :layoutManager ="" from XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35679776/

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