首页 > 解决方案 > 在回收站视图网格布局管理器中删除卡片之间的填充

问题描述

我在带有网格布局管理器的回收站视图中有一个卡片视图。我想删除卡片之间的空间,但也要保持卡片的特定宽度。

这是我的布局活动:

<RelativeLayout 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".Catalog"
android:id="@+id/content_mainfragment">


<android.support.v7.widget.RecyclerView
    android:id="@+id/recyclerView"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />


</RelativeLayout>

这是我的名片:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="350dp"
android:layout_height="315dp"
android:gravity="center_horizontal"
android:orientation="vertical">

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp">

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

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="match_parent"
            android:layout_height="180dp"
            android:background="@color/primaryLightColor"
            app:layout_constraintBottom_toTopOf="@+id/card_Title"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
  ....
    ...
    ....

在此处输入图像描述

标签: androidandroid-layoutgridviewandroid-recyclerview

解决方案


您可以设置卡片视图的宽度和高度以满足您的要求。请参阅下面的代码以了解更多信息。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:card_view="http://schemas.android.com/apk/res-auto"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/transparent"
                android:orientation="vertical">

    <android.support.v7.widget.CardView
        android:id="@+id/card_view_raw_visit_comments_receiver"
        android:layout_width="@dimen/scale_100dp"
        android:layout_height="@dimen/scale_100dp"
        android:layout_margin="5dp"
        card_view:cardCornerRadius="3dp"
        card_view:cardElevation="3dp">

        <RelativeLayout
            android:id="@+id/layout_raw_relative"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="4dp"
            android:gravity="center">

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

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

                <TextView
                    android:id="@+id/text_raw_company_profile_menu"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:layout_below="@+id/text_raw_company_grid_menu"
                    android:textColor="@color/grid_menu_text_color"
                    android:textSize="@dimen/txt_11"
                    tools:text="Task"/>
            </RelativeLayout>
        </RelativeLayout>
    </android.support.v7.widget.CardView>
</RelativeLayout>

推荐阅读