RecyclerView有时会滚动创建边距

时间:2017-04-14 14:12:08

标签: java android xml android-layout

RecyclerView创建一个仅在向上和向下滚动后出现的边距。对于所有项目都不会发生这种情况,但它始终出现在同一项目中。

编辑:我用黑色圆圈标记的边距比绿色圆圈大。它应该在每个项目之间都有相同的空间

margins I marked with black circles are bigger than the green ones. Its supposed to all have the same space between each itesm

这是我的xml代码

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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"
tools:context="com.mangolassi.norman.steller.MessageRoomActivity">

<android.support.v7.widget.RecyclerView

    android:id="@+id/messageRecyclerView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/linearLayout"/>

<LinearLayout
    android:id="@+id/linearLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:orientation="horizontal">

    <EditText
        android:id="@+id/messageEditText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_weight="1"/>

    <Button
        android:id="@+id/sendButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:enabled="false"
        android:text="SEND"/>

</LinearLayout>

,这是项目xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:orientation="horizontal">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <de.hdodenhof.circleimageview.CircleImageView
            android:id="@+id/userAvatar"
            android:layout_width="46dp"
            android:layout_height="46dp"
            android:layout_marginLeft="10dp"
            android:src="@mipmap/default_avatar"
            />

        <TextView
            style="@style/incomingMessage"
            android:id="@+id/messageTextView"
            android:text="bsp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />

    </LinearLayout>
    <TextView
        style="@style/outgoingMessage"
        android:id="@+id/messageTextView2"
        android:text="bsp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>
</LinearLayout>

即时通讯使用最新的Android Studio

0 个答案:

没有答案