DividerItemDecoration不会出现在RecyclerView中

时间:2015-09-12 19:05:29

标签: android material-design android-recyclerview

我发现DividerItemDecoration可以很好地处理简单的一行列表项,但是更复杂的一行它拒绝显示。这是列表项的XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:layout_marginTop="5dp"
    android:layout_marginBottom="5dp"
    android:orientation="horizontal"
    xmlns:android="http://schemas.android.com/apk/res/android" >

    <ImageView
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:id="@+id/imageView"
        android:transitionName="obrazek"
        android:layout_marginRight="5dp" />

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:background="?android:attr/selectableItemBackground">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:text="Medium Text"
            android:id="@+id/nazwa"
            android:maxLines="1" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:text="Medium Text"
            android:id="@+id/odleglosc"
            android:layout_gravity="right"
            android:gravity="end"
            android:layout_below="@+id/nazwa"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:clickable="false" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:text=" "
            android:id="@+id/cena"
            android:layout_below="@+id/nazwa"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true" />
        <!--
            <RatingBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/ratingBar"
                android:layout_below="@+id/nazwa"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                style="@style/beerRatingBar" />
        -->

    </RelativeLayout>
</LinearLayout>

我使用最常见的RecyclerView装饰器。只是不知道它为什么不想画画。

recyclerView.addItemDecoration(new DividerItemDecoration(
                                getApplicationContext(), DividerItemDecoration.VERTICAL_LIST));

2 个答案:

答案 0 :(得分:2)

RecyclerView的{​​{1}}方向为android:orientation="horizontal",但您使用的是DividerItemDecoration.VERTICAL_LIST。这是错的。您应该使用DividerItemDecoration.HORIZONTAL。这是违反直觉的: - )

答案 1 :(得分:1)

A有一个类似的问题,但在我的情况下,它使用RelativeLayout作为我的项目的根布局。将其更改为LinearLayout并且工作正常。

我的建议是简化你的项目xml,直到你看到分隔符。