如何在GridLayoutManager中固定项目的高度?

时间:2019-03-13 08:56:01

标签: android android-recyclerview gridlayoutmanager

我正在使用GridLayoutManager创建一些包含图像和文本的网格。但是目前,如果一行上的文本在一行上,而第二行上的文本有两行,则我的项目具有不同的高度,这看起来不太好。如何使所有项目彼此相等(如果每个项目的高度都等于最大元素高度,则为最佳选择

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@color/white"
    android:layout_margin="1dp">

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"/>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:textAlignment="center"
            tools:text="Long title long title long title(560)" />
    </RelativeLayout>
</LinearLayout>

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试以下代码可能对您有用,因为我已经在其中创建了自定义相对布局

package com.test;

public class MySquareRelativeLayout extends RelativeLayout {

    public MySquareRelativeLayout(Context context) {
        super(context);
    }

    public MySquareRelativeLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MySquareRelativeLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @TargetApi(VERSION_CODES.LOLLIPOP)
    public MySquareRelativeLayout(Context context, AttributeSet attrs,int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        // Set a square layout.
        super.onMeasure(widthMeasureSpec, widthMeasureSpec);
    }

}

<?xml version="1.0" encoding="utf-8"?>
<com.test.MySquareRelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/elementRootView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

  <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         android:layout_centerInParent="true"/>

  <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
             android:layout_below="@+id/image"
            android:textAlignment="center"
            tools:text="Long title long title long title(560)" />

</com.test.MySquareRelativeLayout>