Tag related with Android animation effects between screens or scenes
Questions tagged [android-transitions]
739 questions
0
votes
0 answers
Android animation between activity and fragment
I got a trouble when I do an animation between an activity and a fragment the animation for the activity is not working only the fragment move.
FragmentTransaction transaction =…

Vodet
- 1,491
- 1
- 18
- 36
0
votes
1 answer
Auto-hided Toolbar does not reappear on new Fragment
I have a single-activity application that implements (so far) three different fragments:
MainActivity - takes care of switching between fragments
HomeFragment - home screen for application
TasksFragment - includes RecyclerView with CardView and…

user1736049
- 366
- 4
- 18
0
votes
1 answer
How to make a 3D flip from a fragment to an activity?
I am trying to make the flip transition to another activity on clicking a button in a fragment. I have set up onClickListener for the required button which calls another function, something like:
Button btn = (Button)…

M J Learner
- 171
- 2
- 11
0
votes
1 answer
Complete UI before continue
I have a problem when on Fragment transitions.
I want set ActionBar title to "Loading" before switching fragment, code:
getSupportActionBar().setTitle("Loading");
FragmentManager fragmentManager =…

AlessioDP
- 88
- 9
0
votes
1 answer
RecyclerView shared transition and item animator incompatibility?
I have been working for several days to solve a problem I have with recyclerView.
I will not put the details as this is quite a "high" level question.
I have a RecyclerView with items in a certain order, and a Detail activity that allows to edit an…

Nulleye
- 25
- 1
- 6
0
votes
1 answer
Android Scenes & Transitions, logic doesn't work after first scene
I have an AuthorizationActivity with 3 scenes, which are simply different number of fields, so when user comes on Activity runs first "splash scene", with 2 buttons(Sign In, Sign Up), by clicking on each user sees the same activity but different…

Dennis Zinkovski
- 1,821
- 3
- 25
- 42
0
votes
1 answer
Shared element transition from fragment recyclerview inside viewpager to new activity?
I have a fragemnt with a recyclerView inside a viewPager of my MainActivity. When an item image on the recyclerView is clicked, it opens a new activity with the shared element transition between the images. Below is the the adapter for the…

Richard Smith
- 3
- 1
0
votes
2 answers
Views are transitioning individually/separately when using Activity Transitions
I'm trying to create a slide up effect for one of my Android Applications' Activity, similar to the Gmail app's compose Activity enter animation/transition, without the previous Activities' exit animation though. As per my research, there are two…

Julian Os
- 281
- 1
- 15
0
votes
1 answer
setExitTransition not work when finishing an Activity without starting a new one
I have an Activity which sets the exit transition as Explode, like this: (API >= 21)
...
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
…

teejoe
- 673
- 2
- 6
- 17
0
votes
1 answer
Android switch animation between singleInstance activities
Is it possible to have animation when switching between activities which were already started as "singleInstance" before?
Cause when using the transitions, it is animating only on fresh start and finish.
EDIT:
Ok, seems like it's not possible.…

Arny
- 432
- 4
- 15
0
votes
1 answer
Transition animation starting position wrong place
I'm having problems with android transition. I have a recyclerview list with multiple elements. The animation should start from any row's image when clicked, but it doesn't, it starts from the middle of the row.
I have a fragment with a…

user1416072
- 107
- 12
0
votes
2 answers
How to put Shared Elements in some Base Activity in Android
I want to share one specific layout of base activity so when Transition between activites occurs, this layout remain unchanged. Any Suggestions?
e.g. I have a custom tab bar in base activity that I dont want to change

Mansoor Ahmad Samar
- 43
- 4
0
votes
1 answer
Text fade-in with Transition Manager not working with RecyclerView
I have a fragment holding a recyclerview, and when I tap on an item I want the textviews within it to fade out for a scene transition into an Activity. When I hit the back button to go back to the fragment, the text in the recyclerview item should…

TonyKazanjian
- 269
- 2
- 13
0
votes
0 answers
Transition won't animate
I have a RelativeLayout with an ImageView centered:

JY2k
- 2,879
- 1
- 31
- 60
0
votes
2 answers
Animate the transition between fragments in FragNav library
I am trying to animate between the fragments. I am using FragNav library to manage the fragment. I have looked out almost all answer related to fragment transition but can't sort the problem. Can anyone assist me. I am also using bottom tab bar to…

Prashant Kumar Sharma
- 1,120
- 1
- 11
- 21