我正在尝试使用XML属性android:layoutAnimation
在RecyclerView中执行自定义动画。
问题是:当我直接在活动的onCreate()
中填充适配器时,动画会正常触发。但是,当我尝试从SwipeRefreshLayout.setOnRefreshListener
填充recyclerView时,动画未正确触发。
我不知道怎么了。
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.1.0-alpha04'
活动XML:
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/postListRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:layoutAnimation="@anim/layout_animation_enter_up"
android:paddingTop="8dp"
android:paddingBottom="8dp" />
layout_animation_enter_up.xml:
<layoutAnimation
xmlns:android="http://schemas.android.com/apk/res/android"
android:animation="@anim/item_animation_enter_up"
android:animationOrder="normal"
android:delay="15%" />
item_animation_enter_up.xml:
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="600">
<translate
android:fromYDelta="50%p"
android:interpolator="@android:anim/decelerate_interpolator"
android:toYDelta="0" />
<alpha
android:fromAlpha="0"
android:interpolator="@android:anim/decelerate_interpolator"
android:toAlpha="1" />
</set>
此代码正确触发了 layout_animation_enter_up 动画:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_post_list)
val adapter = PostsAdapter()
postListRecyclerView.adapter = adapter
val dummyData = Post(1, "Title", "Body", 1, "Name")
val postList = listOf(dummyData, dummyData, dummyData, dummyData, dummyData, dummyData, dummyData)
adapter.submitList(postList)
}
此代码不会触发 layout_animation_enter_up 动画:
override fun onCreate(savedInstanceState: Bundle?) {
postListSwipeRefreshLayout.setOnRefreshListener {
val adapter = PostsAdapter()
postListRecyclerView.adapter = adapter
val dummyData = Post(1, "Title", "Body", 1, "Name")
val postList = listOf(dummyData, dummyData, dummyData, dummyData, dummyData, dummyData, dummyData)
adapter.submitList(postList)
}
}
在两个代码段(基本相同)中,我正在考虑RecyclerView从空状态变为填充状态。如果我在setOnRefreshListener
回调中或onCreate
内填充适配器,那么UI角度是否有区别?
编辑:上面的代码段与原始代码库不同,只是为了简化说明。我不想知道这个问题的表现。我想知道为什么动画在第二个片段中不起作用而在第一个片段中能正常工作。
答案 0 :(得分:0)
如果您在刷新内提交列表,则基本上第一个代码段仅应该有效,即:
postListSwipeRefreshLayout.setOnRefreshListener {
adapter.submitList(postList)
}
第二段代码不应触发动画,因为每次刷新布局时,都会创建一个新适配器实例,这会使适配器无法观察更改。
我不知道每次刷新布局时为什么要创建一个新实例,但是这样会浪费无用实例的内存。
摘要:您应该只创建一次实例,并尽可能多地重用它,而不是创建新实例。