Tag related with Android animation effects between screens or scenes
Questions tagged [android-transitions]
739 questions
0
votes
2 answers
how to use matchOrder in transitionSet in xml?
I have a transitionSet and I want to set an order in which the views will be animated, but I don't find any example on how to use matchOrder correctly.

Victor
- 1,818
- 13
- 16
0
votes
1 answer
Change Tablayout Background Color While Scrolling
I am Developing an android app that having 3 tabs. I am using TabLayout and ViewPager. I planed to give 3 different background colours for The AppBar & TabLayout on 3 different tabs. I need to make a smooth transition between colours while changing…

Ajay Sivan
- 2,807
- 2
- 32
- 57
0
votes
1 answer
Fragment with swipe-refresh Layout not transitioning
I have a fragment with a swipe-refresh layout containing a Recycler view and I added custom transitions and associated it with the fragment through frag.setEnterTransition() before the I started the fragment's transaction. But however it doesn't…

not_again_stackoverflow
- 1,285
- 1
- 13
- 27
0
votes
1 answer
how show app correctly in recent task in android
How show app when it app finished and the user clicked in recent task, my app don't show correctly, this show other screen, in this App, i use animation when transtion activity and it app is finish this execute finishedAfterTransition in exist in…

Jaive Torres Pineda
- 93
- 1
- 11
0
votes
0 answers
Android transition: Buttons not clickable after transition
I'm new to transition and trying a basic example. There are two buttons, "DOWN" and "UP", in the layout. If you click "DOWN", both buttons are supposed to move down to the bottom of screen. If you click "UP", both buttons are supposed to move up to…

Libelle
- 806
- 7
- 14
0
votes
1 answer
How to translate windowmanager floating layout diagonally with animation? (ChatHead click animation)
I'm trying to implement chatheads in my application. I've managed to get everything working, onClick the custom layout opens which is a relative layout with a webview and some buttons. The chathead moves to the top right corner when its clicked…

Zeeshan
- 11
- 2
0
votes
2 answers
Transition effects between activities in android
On a button click, I want to go to an activity which is not written by me (such as ACTION_DIAL) and at the same time I want to control it's transition effects.
I am able to control transition effect at opening of the activity by using…

Arun K
- 1
- 2
0
votes
2 answers
Android Transitions not working
I am trying to play a transitionSet in android when I leave from TitleScreenActivity to MainActivity. The problem is that: it only plays the fade animation, but doesn't play the other 2 slides.
Here are my codes:
transition_menu.xml

Rosário Pereira Fernandes
- 11,015
- 6
- 55
- 79
0
votes
1 answer
Transition / Animation (onTouchListener)
So here is the code of simple transitioning,from top_left to bottom_right, I dont understand why I have to return false for onTouch() to work properly,
1.If I set return true, one a single touch , it sets counter from 0 to 3 , or simply adds 2 or 3…

Daniyal Javaid
- 94
- 6
0
votes
0 answers
Android Transition Framework with fragments
I have a tab based application which has only one activity. I would like to apply the android material transition effects when moving from one fragment to other. I have followed this samples. Here is what I am doing,
@Override
public View…

Zach
- 9,989
- 19
- 70
- 107
0
votes
1 answer
Activity Transitions + ImageView (Android)
I am using activities transitions in Android with the next:
ActivityOptionsCompat options = ActivityOptionsCompat
.makeSceneTransitionAnimation(activity, view, "image");
activity.startActivity(intent, options.toBundle());
And I am sharing two…

8370
- 153
- 10
0
votes
1 answer
Transition ImageView Animation
I wanna make my imageView animated as it enters from Activity A to Activity B via onClickListener and set itself into another imageView. These are my Activities.
Activity A:
Activity B:
I want to to be animated something like this: Animation
I…

hyrulelink16
- 389
- 1
- 5
- 17
0
votes
1 answer
In Android, how to achieve this transition effect where incoming material elements expand into view?
As per Google's material design specs, under Animation - meaningful…

Bruce
- 2,357
- 5
- 29
- 50
0
votes
2 answers
new Shared Transition API not working for Imageview from One recycler view to another
I am trying to achieve the sharedElement to animate an imageView from one activity to another , but my problem is my imageView is inside recyclerView header so it doesn't animate.
So my question is, Is there a way for this to achieve?
I have seen…

JAAD
- 12,349
- 7
- 36
- 57
0
votes
0 answers
Fragment exit transition doesn't play between two instances of the same Fragment
I built a very primitive app consisting of one activity and two fragments. From Fragment1 you can either navigate to another instance of Fragment1 or to Fragment2. When navigating between two fragments, I'm setting an enter and exit transition.
For…

Kirill Rakhman
- 42,195
- 18
- 124
- 148