Questions tagged [android-transitions]

Tag related with Android animation effects between screens or scenes

739 questions
0
votes
3 answers

Android ViewPager different transitions for different pages

Is it possible to setup different PageTransformers for different fragments in ViewPager? I would like to use ZoomOutPageTransformer when the user swipes between (0, 1) and (n-1, n) fragments of ViewPager with n fragments and use the default…
Sergii
  • 1,521
  • 3
  • 24
  • 37
0
votes
1 answer

Android L transition and home up button

I am using the new Android L transition, in particular shared element transitions along with a Slide(). When I press the back button the transitions work perfectly, it slides and transitions the shared ImageView to the correct spot but when I press…
0
votes
1 answer

Can I decrease the time it takes to leave the current activity and start the new one? (Android)

I have a hierarchical app where the root activity has a ListView which loads an activity based on which item is clicked. That activity in turn loads an activity based on a ListView selection and so on. My transitions are pretty fast and Activity B…
0
votes
1 answer

View Pager swipe transition

I want to achieve following view pager transition on page swipe.Please Suggest me the approach to achieve this.Thanks in advance. ![required transition]: https://html1-f.scribdassets.com/53uvxqf53442v1re/images/3-8a20c30a8a.jpg
0
votes
1 answer

Transitions for below API 19

I see that Kitkat added scenes and transitions (something I'm learning now). It seems very easy to implement, but if my minSDKVersion is set to below 19, I need to use @SuppressLint("NewApi"). Does this mean that my app would crash for lower sdks?…
Tom McFarlin
  • 829
  • 1
  • 9
  • 24
0
votes
1 answer

How to replicate sliding fragment 3d animation in Zazzle

I'm working on a project that calls for the navigation bar to be implemented in a fashion similar to how the Zazzle application does their navigation bar. Animations are not my expertise so I would like to get some ideas from the dev community on…
feilong
  • 1,564
  • 3
  • 16
  • 22
0
votes
1 answer
0
votes
1 answer

layout visibility animation

How do I show the layout with transition duration 2.5 by displaying top of the layout first followed by the bottom not all at the same time .I really appreciate any help.Thanks in Advance. summary: layout visibility animation with transition…
-1
votes
1 answer

I want to do a TransitionDrawable transition multiple times using xml transition

Here my transition and reverse transition happens only once not 10 times, Can u tell me where I'm wrong ?? public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { …
-1
votes
2 answers

How to implement tap to like animation like Instagram?

As title, I'm currently working on an Android project. I need to implement a feature similar to "tap to like" on Instagram. I think this feature could be described in this way. When tapping the button, a small image(heart icon on Instagram) floats…
Dayo Choul
  • 861
  • 2
  • 9
  • 23
-1
votes
1 answer

Shared element transition from Activity to Fragment using ViewPager

am using this code in my Activity if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { view.setTransitionName("pic"); ActivityOptionsCompat a=ActivityOptionsCompat.makeSceneTransitionAnimation((Activity)…
phpdroid
  • 1,642
  • 1
  • 18
  • 36
-1
votes
1 answer

How to animate second Activity from bottom to top?

I have a click button on first activity and when we click on that button then I want to animate second activity but in my case my first activity also animated with second here is code Intent createCompaignActivityIntent = new Intent(mActivity,…
-1
votes
1 answer

Android fragment shared element transition implementation

I have an Android app that provides navigation through online folders (like Google Drive). I have implemented the folder navigation with fragments. The main activity has a toolbar and the remaining space is used for fragments. One fragment…
-1
votes
1 answer

Shared Element transition from an Activity to a fragment in Another Activity

I’m working on a project in which I have to do a shared transition. I want to perform a transition on an ImageView from my splash Activity [First Activity] to Login Activity [Second Activity] which has the ImageView in a Fragment. The Image in my…
-1
votes
1 answer

Material Design Non-Simple Activity Transition Animations

I've looked at the ActivitySceneTransitionBasic example in the samples of the Android SDK, which does a very simple transition from a GridView item click into a Detail Activity for the item that was clicked. This example is much too simple. I'd like…
Christopher Perry
  • 38,891
  • 43
  • 145
  • 187
1 2 3
49
50