自动调整,等间距GridLayoutManager

时间:2018-06-17 00:51:13

标签: android android-recyclerview gridlayoutmanager

我知道以前曾经问过这个问题,因为我已经在其他人的搜索中搜索了3个多小时没有可行的解决方案。

我正在使用GridLayoutManager构建一个RecyclerView,它应该根据宽度和指定的项目宽度自动计算它的列跨度,并且它还应该在所有项目之间放置相等的间距

(如果有三个,它们应该位于中心,右,左,中间间距相等)

这是我的项目布局:

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:cardCornerRadius="@dimen/default_corner_radius"
app:cardElevation="@dimen/default_elevation">

<android.support.constraint.ConstraintLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/entity_imageView"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginStart="24dp"
        android:layout_marginTop="24dp"
        android:layout_marginEnd="24dp"
        android:contentDescription="@string/entity_image_cd"
        android:scaleType="centerCrop"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/image_placeholder" />

    <TextView
        android:id="@+id/entity_type_textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="16dp"
        android:text="@string/entity_type_company"
        android:textSize="12sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/entity_imageView" />

    <ImageView
        android:id="@+id/entity_type_imageView"
        android:layout_width="15dp"
        android:layout_height="15dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:contentDescription="@string/entity_type_icon_cd"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/company_icon" />
</android.support.constraint.ConstraintLayout>

我的目标是为GridLayoutManager构建一个扩展来实现我想要的。任何人都可以帮助我吗?

0 个答案:

没有答案