Android Recycler查看动画错误

时间:2018-05-09 19:39:16

标签: android android-recyclerview android-animation

我正在为我的回收者视图设置动画,使其左右滑动,在左侧显示一个复选框。初始动画很棒,但是当列表长度超过设备高度时,我们会遇到两个元素(日期和水平规则)放置位置的问题。我已经录制了两个视频来更详细地演示这个错误。

目标:如何防止这些日期出现锯齿现象?

http://dai.ly/x6j70qz

http://dai.ly/x6j70yr

这是父回收者视图:

<android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview_vins"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:paddingStart="-46dp"
        android:visibility="visible"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

这是每个列表项的视图持有者:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/front_layout_read_mode"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <CheckBox
        android:id="@+id/is_selected_checkbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:button="@drawable/checkbox_selector"
        android:checked="false"
        android:scaleX="0.5"
        android:scaleY="0.5"
        app:layout_constraintEnd_toStartOf="@+id/year_make_model_text_view"
        app:layout_constraintTop_toTopOf="@+id/year_make_model_text_view" />

    <TextView
        android:id="@+id/year_make_model_text_view"
        style="@style/VinListYearMakeModel"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="64dp"
        android:layout_marginTop="24dp"
        app:layout_constraintEnd_toStartOf="@+id/date_text_view"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="1998 Honda Fit blahblahblahblahblahblahblahblahblahblahblah" />

    <TextView
        android:id="@+id/vin_text_view"
        style="@style/VinListVin"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAllCaps="false"
        app:layout_constraintStart_toStartOf="@+id/year_make_model_text_view"
        app:layout_constraintTop_toBottomOf="@+id/year_make_model_text_view"
        tools:text="4JHG2J43HJHG34" />

    <TextView
        android:id="@+id/date_text_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="16dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="@+id/year_make_model_text_view"
        tools:text="03/14/18" />

    <TextView
        android:id="@+id/horizontal_rule"
        android:layout_width="0dp"
        android:layout_height="1dp"
        android:layout_marginTop="24dp"
        android:background="#E1E1E1"
        android:textSize="20sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/vin_text_view" />
</android.support.constraint.ConstraintLayout>

这是动画的要点,它将回收者视图左右滑动:

val aul = AnimatorUpdateListener {
    Log.i("Animated Value", it.animatedValue.toString())
    recyclerview_vins.setPadding(it.animatedValue as Int, 0 ,0 ,0)
}
val varl = ValueAnimator.ofInt(0, -137) // These values reversed for opposite animation
varl.duration = 400
varl.addUpdateListener(aul)
varl.start()

enter image description here

我认为这可能与其他与回收站视图列表中的最后一项有关的错误有关:

Weird Animation Comes For RecyclerView Last Item

0 个答案:

没有答案