我有一个RecyclerView,它的圆形图标项与后面的图标重叠。我通过采用负数的装饰来完成此操作,并将其用作“ outRect.right”值并赋予其一定的高度。这给了我想要的分层或重叠效果。
问题是当我滚动列表时,RecyclerView不知道何时正确开始绘制项目。当上一个项目完全显示时,它们开始绘制而不是在屏幕上绘制项目。
这是一个问题,因为项目是重叠的,其中很大一部分项目会立即显示在由上一个项目覆盖的屏幕上。无论项目的任何重叠部分均应在屏幕上显示b / c。相反,它首先等待其顶部的项目在屏幕上完全显示。
项目应在屏幕上开始绘制。不要等到上一个项目完全显示在屏幕上。
我的活动XML
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:foregroundGravity="center_vertical"
android:layout_gravity="center_vertical"/>
</FrameLayout>
初始化RecyclerView
LinearLayoutManager layoutManager = new LinearLayoutManager(getContext(), LinearLayoutManager.HORIZONTAL, true);
navigationRecylerView.setLayoutManager(layoutManager);
navigationRecylerView.addItemDecoration(new ItemDecorator(-circleOverlap));
navigationRecylerView.setAdapter(listAdapter);
我的装饰品
public class ItemDecorator extends RecyclerView.ItemDecoration {
private final int mSpace;
public ItemDecorator(int space) {
this.mSpace = space;
}
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
int position = parent.getChildAdapterPosition(view);
if(position == 0)
outRect.right = mSpace/3;
else
outRect.right = mSpace;
}
}
导航项
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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="match_parent">
<ImageView
android:id="@+id/navigation_item_icon"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<ImageView
android:id="@+id/navigation_item_tab"
android:layout_width="0dp"
android:layout_height="50dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintVertical_bias="0.25"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:src="@drawable/navigation_tab"/>
<TextView
android:id="@+id/navigation_item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="@+id/navigation_item_tab"
app:layout_constraintTop_toTopOf="@+id/navigation_item_tab"
app:layout_constraintBottom_toBottomOf="@+id/navigation_item_tab"
android:layout_marginLeft="22dp"
android:textStyle="bold"
android:textSize="@dimen/primary_text_size"
android:textColor="@color/primary_text_color"/>
</android.support.constraint.ConstraintLayout>