web-dev-qa-db-ja.com

RecyclerView内のCardViewのカード間のスペースを減らすにはどうすればよいですか?

アプリのメイン画面のレイアウトに取り組んでいます。グリッドレイアウトとその中のCardViewを備えたRecyclerViewを使用しています。各カードの間隔を狭めようとしています。以下のスクリーンショット(レイアウトのアウトラインがオンになっている)と私のレイアウトファイルです。各カードを垂直方向と水平方向に少し近づけるにはどうすればよいですか?私はマージンをたくさんいじっていますが、これを行うための適切なマージンまたはパディング値を見つけることができないようです。助けてくれてありがとう!

enter image description here

summary_view.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:id="@+id/card_view"
    Android:layout_width="match_parent"
    Android:layout_height="200dp"
    card_view:cardCornerRadius="5dp"
    card_view:cardMaxElevation="15dp"
    card_view:cardElevation="10dp"
    card_view:contentPadding="5dp"
    Android:padding="1dp"
    card_view:cardBackgroundColor="@color/colorPrimary"
    card_view:cardUseCompatPadding="true"
    card_view:cardPreventCornerOverlap="false"
    >

    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
        Android:orientation="vertical"
        Android:id="@+id/card_list">
        <ImageView
            Android:id="@+id/thumbnail"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            Android:layout_gravity="center"
            Android:gravity="center"
            Android:contentDescription="@string/video_thumbnail_description"
            Android:layout_weight="1"
            />

        <TextView
            Android:id="@+id/video_title_view"
            Android:layout_height="match_parent"
            Android:layout_width="wrap_content"
            Android:layout_gravity="center"
            Android:gravity="center"
            Android:layout_weight="2"
            />
    </LinearLayout>
</Android.support.v7.widget.CardView>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:id="@+id/activity_main"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:paddingBottom="@dimen/activity_vertical_margin"
    Android:paddingLeft="@dimen/activity_horizontal_margin"
    Android:paddingRight="@dimen/activity_horizontal_margin"
    Android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.app.int_a.giantbombforandroid.main.mainscreen.MainActivity">

    <Android.support.v7.widget.RecyclerView
        Android:id="@+id/my_recycler_list"
        Android:scrollbars="vertical"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"/>
</RelativeLayout>
5
intA

これらの属性を編集する

card_view:cardMaxElevation="1dp"
card_view:cardElevation="1dp"

したがって、完全なコードは

<?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:id="@+id/card_view"
    Android:layout_width="match_parent"
    Android:layout_height="200dp"
    card_view:cardCornerRadius="5dp"
    card_view:cardMaxElevation="1dp"
    card_view:cardElevation="1dp"
      card_view:cardBackgroundColor="@color/colorPrimary"
    card_view:cardUseCompatPadding="true"
    card_view:cardPreventCornerOverlap="false"
    >

    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
        Android:orientation="vertical"
        Android:id="@+id/card_list">
        <ImageView
            Android:id="@+id/thumbnail"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            Android:layout_gravity="center"
            Android:gravity="center"
            Android:src="@drawable/bag"
            Android:contentDescription="string/video_thumbnail_description"
            Android:layout_weight="1"
            />

        <TextView
            Android:id="@+id/video_title_view"
            Android:layout_height="match_parent"
            Android:layout_width="wrap_content"
            Android:layout_gravity="center"
            Android:gravity="center"
            Android:text="lovelksdjslkdjlsdj"
            Android:layout_weight="3"
            />
    </LinearLayout>
</Android.support.v7.widget.CardView>
11
Elsunhoty

私はこれで少し実験します、そして私にとっては...

<?xml version="1.0" encoding="utf-8"?>
<Android.support.v7.widget.CardView
    Android:id="@+id/card_view"
    xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    xmlns:app="http://schemas.Android.com/apk/res-auto"
    app:cardCornerRadius="4dp"
    app:cardElevation="1dp"
    app:cardMaxElevation="1dp"
    app:cardUseCompatPadding="true" >  //this line is game changer

ハッピーコーディング

3
Nenad Štrbić