每次在Tablayout和Viewpager下的片段中加载Recyclerview幻灯片动画

时间:2019-01-31 07:05:17

标签: android android-recyclerview android-viewpager android-tablayout

我有一个分页布局,其中包含3个片段 Fragment1 Fragment2 Fragment3 ,均带有 recyclerview 。我需要给这些recyclerviews放个滑模动画。

每当我加载片段时,

在片段1的recyclerview上向上滑动动画播放,但是片段2没有动画,而片段3再次具有动画。

我知道Viewpager会加载下一个Fragment实例,但是如果是这种情况,那么当我从Fragment 2切换时,Fragment 3不应获得动画。

有人可以帮我吗?我需要将动画应用于所有Fragment的recyclerviews。

使用的代码:

LayoutAnimationController animation = AnimationUtils.loadLayoutAnimation(getContext(), getResources().getIdentifier("layout_animation_from_bottom", "anim", getContext().getPackageName()));

 recyclerView.setLayoutAnimation(animation);

0 个答案:

没有答案