本文介绍了我怎么能动态显示viewpager内的片段?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个承载两个片段一个viewpager。现在我想以取代片段中的一个按钮上点击。我怎么能这样的动画更换? (例如使用倒装卡效应)

I have got a viewpager that hosts two Fragments. Now I would like to replace one of the Fragments on a button click. How can I animate this replacement? (e.g. using the flip-card effect)

由于难以2把我的code在这里,这是我基本上是用

Since it is difficult two put all my code in here, this is what I basically usehttp://developer.android.com/reference/android/support/v4/app/FragmentPagerAdapter.html

推荐答案

您可以使用的

或者,如果你想在更换片段,可以设置自定义动画上的 FragmentTransaction

Or, if you want the animation on replacing a fragment, you can set a custom animation on the FragmentTransaction

这篇关于我怎么能动态显示viewpager内的片段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 05:58