'Android Studio Recycler View Vertical Spacing Too Big

So I am trying to create a Recycler view that will have the images display in a way that you don't have to scroll down; just a 3x3 box of items but I am not sure how to correct the vertical space in my code. The vertical space is length of the display. So I have 3 items display and then I have to scroll down the length of the screen to see another 3 items.

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ui.categories.CategoriesActivity">
    ​
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        ​
        ​
        <GridLayout
            android:id="@+id/gLayout"
            android:columnCount="3"
            android:rowCount="3"
            android:alignmentMode="alignMargins"
            android:columnOrderPreserved="false"
            android:layout_width="match_parent"
            android:visibility="gone"
            android:layout_height="wrap_content">
            ​
            <androidx.cardview.widget.CardView
                android:id="@+id/mindfulness_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_columnWeight="1"
                android:layout_rowWeight="1"
                app:cardElevation="6dp"
                app:cardCornerRadius="12dp"
                android:layout_margin="12dp"
                android:clickable="true"
                >
                <!-- First Card Begin -->
                <LinearLayout
                    android:orientation="vertical"
                    android:padding="16dp"
                    android:gravity="center"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">
                    ​
                    <ImageView
                        android:src="@mipmap/tammy"
                        android:layout_width="88dp"
                        android:layout_height="88dp">
                    </ImageView>
                    ​
                    <TextView
                        android:layout_margin="12dp"
                        android:textColor="#6f6f6f"
                        android:textSize="18sp"
                        android:text="Reminiscence"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content">
                    </TextView>
                    ​
                </LinearLayout>
                ​
            </androidx.cardview.widget.CardView>
            ​
            <androidx.cardview.widget.CardView
                android:id="@+id/smalltalk_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_columnWeight="1"
                android:layout_rowWeight="1"
                app:cardElevation="6dp"
                app:cardCornerRadius="12dp"
                android:layout_margin="12dp"
                android:clickable="true"
                >
                ​
            </androidx.cardview.widget.CardView>
            ​
            <androidx.cardview.widget.CardView
                android:id="@+id/reminiscence_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_columnWeight="1"
                android:layout_rowWeight="1"
                app:cardElevation="6dp"
                app:cardCornerRadius="12dp"
                android:layout_margin="12dp"
                android:clickable="true"
                >

                ​
            </androidx.cardview.widget.CardView>
            ​

            ​
            ​
        </GridLayout>

        ​

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/recycler_view"
            style="@style/RecyclerView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginStart="106dp"
            android:layout_marginTop="70dp"
            android:layout_marginEnd="106dp"
            android:layout_marginBottom="40dp"
            android:layout_weight="1"
            android:paddingStart="25dp"
            android:paddingEnd="25dp"
            android:visibility="visible"
            tools:listitem="@layout/tutorial_layout" />

    </LinearLayout>
    ​
</ScrollView>

I'm not sure what I am doing wrong because my layout_height is equal to warp_content and not match_parent in the RecyclerView



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source