Как установить столбцы в центре строки в Android RecyclerView - GridLayoutManager - PullRequest
0 голосов
/ 28 мая 2018

У меня 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>

Мой код Котлина для установки LayoutManager

rv_option.layoutManager = GridLayoutManager(this, 4)

Вот мой код Котлина:

 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 голосов
/ 29 мая 2018

Попробуйте, надеюсь, это поможет.

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

0 голосов
/ 29 мая 2018

это невозможно, так как элемент макета сетки зафиксирован.Вы можете использовать другой трюк, например, использовать временный элемент для вашего списка, но он не может помочь вам, если в последней строке есть один или три элемента

...