GridLayoutManager在同一行中给项目相同的高度

时间:2019-07-07 15:03:30

标签: android android-recyclerview gridlayoutmanager

我有一个带有GridLayoutMananger的回收站视图,由于某种原因,同一行中的所有项目都具有相同的高度 看起来像这样: enter image description here

如您所见,所有元素都具有相同的高度。我在图片上画出的红线下方有一个空的空间;我希望将其删除。 正确的物品的高度比其他物品高,因此其他两个物品的高度相同。

我希望每件物品都能够承受所需的高度,而不再需要更多。

这是java中的代码:

GridLayoutManager layoutManager = new GridLayoutManager(this,3 );
    recycle_confirm_command = (RecyclerView) findViewById(R.id.recycle_all_command);
    recycle_confirm_command.setLayoutManager(layoutManager);
    adapter = new ListCommandAdapter(this, List_to_confirm, btn_total);
    recycle_confirm_command.setAdapter(adapter);

这里是该项目的XML适配器:

 <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="10dp"
    android:layout_marginEnd="10dp"
    android:layout_marginStart="10dp"
    android:layout_marginTop="10dp"
    card_view:cardBackgroundColor="@color/UnderPrim"
    card_view:cardCornerRadius="10dp"
    android:background="@drawable/my_button_xml">

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


        <TextView
            android:id="@+id/lbl_command"
            android:layout_width="wrap_content"
            android:layout_alignParentLeft="true"
            android:text="eeee\nrfkfkkf\nfkfkfkf\ndkdkdkd\j\nkdkdkd"
            android:layout_toLeftOf="@id/lbl_time_of_command"
            android:layout_height="wrap_content" />


        <TextView
            android:id="@+id/lbl_time_of_command"
            android:layout_width="wrap_content"
            android:text="time"
            android:layout_alignLeft="@id/lbl_numer_of_command"
            android:layout_alignParentRight="true"
            android:layout_height="wrap_content" />
        <TextView
            android:id="@+id/lbl_numer_of_command"
            android:layout_width="wrap_content"
            android:layout_alignParentRight="true"
            android:gravity="bottom"
            android:layout_alignBottom="@id/lbl_command"
            android:text="numéro"
            android:layout_below="@id/lbl_time_of_command"
            android:layout_height="wrap_content" />



    </RelativeLayout>


</android.support.v7.widget.CardView>

CardView具有“包装内容”作为高度,因为重量是由左侧textview的高度定义的。 谢谢您的帮助

1 个答案:

答案 0 :(得分:0)

您需要使用StaggeredGridLayoutManager来使每个项目具有不同的高度,即以高度作为包装内容。将您的get替换为下面的GridLayoutManager

StaggeredGridLayoutManager

enter image description here