RecyclerView中有多余的空间,问题不在于高度(match_parent到wrap_content)

时间:2018-11-11 15:40:42

标签: xml android-recyclerview

我有RecyclerView,其中在两列中显示了imageView和TextView。一切正常,但是当我要设置背景时,它只是在两个项目之间创建了额外的空间。我搜索了一下,发现问题可能出在android:height上,但这并没有帮助我。这是我的RecyclerView的XML代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/recycler_viewce"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".PatternActivity">
</android.support.v7.widget.RecyclerView>

这是RecyclerView元素的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/gridLayout">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="175dp"
        android:layout_height="130dp"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginStart="5dp"
        android:layout_marginTop="10dp"
        app:srcCompat="@drawable/love" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginStart="5dp"
        android:layout_marginTop="174dp"
        android:ellipsize="end"
        android:maxLines="2"
        android:text="TextView"
        android:textAlignment="center"
        android:textSize="14sp" />
</RelativeLayout>

0 个答案:

没有答案