Questions tagged [android-transitions]

Tag related with Android animation effects between screens or scenes

739 questions
0
votes
1 answer

Xamarin Android ImageView Transition

I am trying to transition an ImageView from an item within my RecyclerView inside a fragment to an Activity. I have declared the following in my styles.xml
Carl
  • 841
  • 1
  • 13
  • 33
0
votes
1 answer

Fragment and transparent background in transition

Okay what I am trying to implement is the following behavior from ET-Money android app: On clicking December 2016 spinner , there's a view that slides down the screen and making background view/layout visibility dark faded . What I've done so far is…
0
votes
1 answer

ListView items expanding to WebViews - Transition Animation

I have a custom ListView with each item opening local HTML files (WebView). I have difficulty in adding animations for the transition when I click on the ListView item to the WebView. I tried using the ActivityOptions.makeSceneTransitionAnimation()…
0
votes
1 answer

White Screen appears while animating fragments

I'm trying to put slide-in-let and slide-out right animations while doing fragment transactions. The animation is working properly. But, I'm getting a white screen while animating the fragments. I tired with all possible solutions given in the…
Sangeetha Pinto
  • 1,022
  • 3
  • 14
  • 32
0
votes
1 answer

fade in & fade out transition not working in android activity

I had a project where i used this transition, but now when i applied it once again to my another app it refuses to make any transition. Here is my code for from MainActivity to AnotherActivity fade_in.xml
0
votes
1 answer

How to avoid performing onResume initializations when old fragment is being replaced

It seems that when a fragment A is replaced by a fragment B, A.onResume() is called before stopping fragment A. I'm performing initializations in A.onResume() and I would like to avoid calling them when A is removed. Is it possible to: avoid…
0
votes
0 answers

Go next row with animate in Android

I create a app with a database.in one activity with swipe to left and right the textView go to previous and next row of table. the problem it is that i want to do transition or animate in left and right swipe for next and previous row. some part of…
ali.b
  • 43
  • 8
0
votes
0 answers

Fragment not animating

liteDetail = LiteDetailFragment.newInstance(item); if (Build.VERSION.SDK_INT >= 21) { Log.d("her1 1","------------------------------------ok hrer_-------------new"); Slide slideTransition = new Slide(); …
0
votes
3 answers

Activity transition ignoring Toolbar

let's see if someone can help me with this. In my app I have successfully implemented slide transitions between most of my activities. All my activities layouts consist in a regular toolbar and some content below. So what I would like is the…
Nemesis
  • 1,138
  • 1
  • 14
  • 29
0
votes
2 answers

Switch fragments in view pager with flip animation

I've been trying to switch fragments inside a fragmentStatePagerAdapter, but even though I was able to change from fragment C-D in the same position; I have not been able to animate the transition. I would appreciate any suggestions to achieve this…
Dyan
  • 1,703
  • 4
  • 19
  • 26
0
votes
0 answers

How to achieve CollapsingToolbar behavior like the plex android app?

I did my best to educate myself on posting here, so let me know if I broke any rules that I can fix. So here is the gif of the behavior I want to emulate: But here is what I have: Also I predict the layout will be important so I will post that…
0
votes
3 answers

How to hide layout with right to left translation

I want to hide a layout on click button with right to left animation. I have already added animation to same layout while appearing the view. Now I want to hide that view with animation. //on appearing view Animation anim =…
0
votes
0 answers

Animating view: set translationY to 0 while also scaling

I have a view that I want to animate- scale it to a bigger size and at the same time move to the very top of the screen, just below the notification bar. The problem is however, at least I think, that the translationY complies with initial view…
zbx
  • 279
  • 1
  • 3
  • 11
0
votes
1 answer

shared element transition doesn't work with FragmentTransaction.add() from appcompat supported library version v7:23.2.0

shared element transition does not working in fragments when doing FragmentTransaction.add() with appcompat latest version while working fine with replace(). When I downgrade appcompat to version v7:23.1 Its working It's working. I could find the…
0
votes
1 answer

Is there an official documentation of available transitions between activities?

Can't find any official documentation about available transitions between activities supported by the operating system. I can find only custom xml transitions generated by the community in google but not official supported transitions given by the…
NullPointerException
  • 36,107
  • 79
  • 222
  • 382