如何在Android RecyclerView - GridLayoutManager中的行中心设置列

时间:2018-05-28 17:17:32

标签: android android-recyclerview kotlin gridlayoutmanager

RecyclerView Grid layout。一切都很好。 但我需要在中心水平设置列。例如。我有18个项目,跨度计数是4.对于最后一行,我有2个项目。这两个项目应位于水平中心而不是左侧。

这是我的RecyclerView

 <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_option"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:overScrollMode="never"
        android:layout_marginTop="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        android:layout_gravity="center_horizontal"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/rv_answer" />

这是我的adapter layout

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_marginStart="@dimen/marginVSmall"
    android:layout_marginEnd="@dimen/marginVSmall"
    android:layout_marginTop="@dimen/marginVSmall"
    android:layout_marginBottom="@dimen/marginVSmall"
    android:layout_height="wrap_content">

    <curvegraph.com.vijay.widgets.SquareTextView
        android:id="@+id/tv_option"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@drawable/circle"
        android:gravity="center"
        android:text="A"
        android:textStyle="bold"
        android:maxLength="1"
        android:textColor="@color/colorWhite"
        android:textSize="@dimen/textXLarge"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.5" />
</android.support.constraint.ConstraintLayout>

我的Kotlin代码设置LayoutManager

rv_option.layoutManager = GridLayoutManager(this, 4)

这是我的Kotlin代码:

 val grid =   GridLayoutManager(this, 8)
        grid.spanSizeLookup = object : GridLayoutManager.SpanSizeLookup() {

            override fun getSpanSize(position: Int): Int {
                return if (position > 15) { // totalRowCount : How many item you want to show
                    2 // the item in position now takes up 4 spans
                } else 1
            }
        }
        rv_option.layoutManager=grid
        rv_option.setHasFixedSize(true)
        optionsAdapter.spanCountFun(8)

2 个答案:

答案 0 :(得分:3)

试试这希望这会有所帮助。

val gridLayoutManager = GridLayoutManager(this, 4)
    gridLayoutManager.setSpanSizeLookup(object : GridLayoutManager.SpanSizeLookup() {

        override fun getSpanSize(position: Int): Int {
            return if (position == 16) { // totalRowCount : How many item you want to show
                4 // the item in position now takes up 4 spans
            } else 1
        }
    })

    recyclerView.layoutManager = gridLayoutManager
    recyclerView.setHasFixedSize(true)

已经有了我自己的答案:https://stackoverflow.com/a/50247597/5167909

答案 1 :(得分:1)

这是不可能的,因为网格布局的项目是固定的。 你可以使用另一种技巧,比如在列表中使用临时项目,但如果最后一行有一个或三个项目,它就无法帮助你