向下滚动时,RecyclerView项目之间形成较大的间隙

时间:2016-03-05 17:52:17

标签: android android-recyclerview android-scrollview

我正在制作一个ToDo列表应用程序,并且在测试时,由于某种原因,每当我尝试向下滚动时,项目之间会形成巨大的差距。每当我拖放项目时总会发生这种情况,但我没有看到我的ItemTouchHelper适配器和回调类有任何错误。如果你可以帮助我,那将是非常棒的。

在: Before

在: After

RecyclerAdapter.java

public class RecyclerAdapter extends                                                                                                                                 

RecyclerView.Adapter<RecyclerAdapter.RecyclerVH> implements ItemTouchHelperAdapter{
private LayoutInflater layoutInflater;
ArrayList<Info> data;
Context context;

public RecyclerAdapter(Context context) {
    layoutInflater = LayoutInflater.from(context);
    this.context = context;
}

public void setData(ArrayList<Info> data) {
    this.data = data;
    notifyDataSetChanged();
}

@Override
public RecyclerVH onCreateViewHolder(ViewGroup viewGroup, int position) {
    View view = layoutInflater.inflate(R.layout.custom_row, viewGroup, false);
    view.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Log.d("R.A onClick Owen", "onClick method triggered");
        }
    });
    RecyclerVH recyclerVH = new RecyclerVH(view);
    return recyclerVH;
}

@Override
public void onBindViewHolder(RecyclerVH recyclerVH, int position) {
    Log.d("RecyclerView", "onBindVH called: " + position);

    final Info currentObject = data.get(position);
    // Current Info object retrieved for current RecyclerView item - USED FOR DELETE
    recyclerVH.listTitle.setText(currentObject.title);
    recyclerVH.listContent.setText(currentObject.content);

    /*recyclerVH.listTitle.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            // Open new Activity containing note content
            Toast.makeText(this, "Opening: " + currentObject.title, Toast.LENGTH_LONG).show();
        }
    });*/
}

public void deleteItem(int position) {
    DBInfo dbInfo = new DBInfo(context);
    dbInfo.deleteNote(data.get(position));
    // Deletes RV item/position's Info object

    data.remove(position);
    // Removes Info object at specified position

    notifyItemRemoved(position);
    // Notifies the RV that item has been removed
}


@Override
public int getItemCount() {
    return data.size();
}

// This is where the Swipe and Drag-And-Drog methods come into place
@Override
public boolean onItemMove(int fromPosition, int toPosition) {
    // Swapping positions
    // ATTEMPT TO UNDERSTAND WHAT IS GOING ON HERE
    Collections.swap(data, fromPosition, toPosition);
    notifyItemMoved(fromPosition, toPosition);
    return true;
}

@Override
public void onItemDismiss(int position) {
    // Deleting item from RV and DB
    deleteItem(position);
}

class RecyclerVH extends RecyclerView.ViewHolder implements View.OnClickListener{
    // OnClickListener is implemented here
    // Can also be added at onBindViewHolder above
    TextView listTitle, listContent;

    public RecyclerVH(View itemView) {
        super(itemView);

        listTitle = (TextView) itemView.findViewById(R.id.title);
        listContent = (TextView) itemView.findViewById(R.id.content);

        listTitle.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        Toast.makeText(context, "Opening: Note" + getLayoutPosition(), Toast.LENGTH_SHORT).show();
        // PS NEVER ADD listTitle VARIABLE AS PUBLIC VARIABLE ABOVE WHICH IS GIVEN VALUE AT ONBINDVH
        // THIS IS BECAUSE THE VALUE WILL CHANGE IF ITEM IS ADDED OR DELETED
    }
}
}

activity_main.xml中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fab="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical"
android:weightSum="1">

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/rounded_corners" />

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <com.melnykov.fab.FloatingActionButton
            android:id="@+id/fab_add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:layout_marginBottom="16dp"
            android:layout_marginRight="16dp"
            android:layout_marginEnd="16dp"
            android:gravity="bottom|end"
            android:onClick="addNote"
            android:src="@drawable/fab_ic_add"
            fab:fab_colorNormal="@color/colorPrimary"
            fab:fab_colorPressed="@color/colorPrimaryDark"
            fab:fab_colorRipple="@color/colorPrimaryDark" />
    </RelativeLayout>
</FrameLayout>
</LinearLayout>

custom_row.xml

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

<LinearLayout
    android:id="@+id/main"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:padding="8dp"
        android:text="@string/test"
        android:textSize="18sp"
        android:textStyle="bold" />
</LinearLayout>
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/main"
    android:paddingLeft="8dp">
    <TextView
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/test"
        android:textSize="15sp" />
</LinearLayout>
</RelativeLayout>

非常感谢能帮助我的人。我在打字的时候把头发拉了出来。

编辑:我已经确认这不是我的ItemTouchHelper类的问题。 (尝试在没有被调用的情况下运行,问题仍然存在。) 此外,似乎在显示对话框并显示键盘时,后台的RecyclerView会自行解决问题。删除对话框后,问题会重复(即滚动会在项目之间放置大量空间)

9 个答案:

答案 0 :(得分:79)

Luksprog回答了Gabriele Mariotti的回答。

根据doc

  

使用2.3.0版本,LayoutManager API有一个令人兴奋的新功能:   自动测量!   这允许 RecyclerView 根据其内容的大小自行调整大小。 &gt;这意味着现在可以使用以前不可用的方案,例如使用 WRAP_CONTENT &gt;作为RecyclerView的维度。   您会发现所有内置的LayoutManagers现在都支持自动测量。

由于此更改,请务必仔细检查项目视图的布局参数以前忽略的布局参数(例如 MATCH_PARENT 在滚动方向上)现在将完全受尊重

在您的项目布局中,您必须更改:

android:layout_height="match_parent"

android:layout_height="wrap_content" 

答案 1 :(得分:31)

将Recycler视图 match_parent 更改为 wrap_content

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

同样更改项目布局xml

将父级布局高度 match_parent 设为 wrap_content

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

        <TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
        />

答案 2 :(得分:3)

这发生在我身上很多次了!

你需要做的就是......制作行文件wrap_content的layout_height并解决你的问题..

android:layout_height="wrap_content"

快乐的编码!

答案 3 :(得分:2)

这是因为您在垂直方向的listview / recyclerview中的行项目的根视图高度中使用 match_parent 。当您使用该项时,该项完全展开为其父项。 当recyclerview 垂直时,使用 wrap_content 表示高度;当水平时,使用宽度

答案 4 :(得分:0)

我有这个问题,我只是用户

android:layout_height="wrap_content"

表示每件物品的父母。

答案 5 :(得分:0)

避免使用如下容器在项目布局中获取视图:

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

<data/>

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

<TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?android:listPreferredItemHeight"
        android:textAppearance="?android:attr/textAppearanceMedium" />
</android.support.constraint.ConstraintLayout>
</layout>

在这种情况下,match_parent将完成其工作,问题仍将存在!取而代之的是:

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

    <data/>

    <TextView
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?android:listPreferredItemHeight"
        android:textAppearance="?android:attr/textAppearanceMedium" />
</layout>

[注意:上面的代码附有数据绑定,请勿使用<layout>&amp; <data>标签,如果不使用数据绑定]

除此之外,如果您必须使用任何视图组容器,请查看容器中的高度和宽度属性,并尝试将其从match_parent更改为wrap_content。那应该解决这个问题。为了获得更高的透明度,可以尝试给出背景颜色并通过它来识别实际问题。

答案 6 :(得分:0)

仅供记录:因为在我的情况下,我们必须实施一些&#34;超级用户界面&#34;使用重叠的RecyclerView和模糊效果工具栏,我必须摆脱clipToPadding="false"中的RecyclerView - xml。

<android.support.v7.widget.RecyclerView
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:paddingTop="@dimen/height_toolbar"
  android:paddingBottom="@dimen/height_bottom_bar_container"
  //android:clipToPadding="false" <-- remove this flag!
  android:scrollbars="vertical"
/>

paddingToppaddingBottom有效,但我们将其替换为一些GapViews(空视图,paddingTop和paddingBottom的高度)

答案 7 :(得分:0)

如果有人正在使用| recyclerViewObject.setHasFixedSize(true);

尝试将其删除,这是导致我的问题的原因。

答案 8 :(得分:0)

您可以尝试设置包含recyclerview的视图组以包装内容