Questions tagged [android-transitions]

Tag related with Android animation effects between screens or scenes

739 questions
0
votes
2 answers

Does Recolor transition not work for VIewGroup?

I have a scene transition and I want to use Recolor animation to change background of a ViewGroup from transparent to another color. Here is my login_to_register.xml:
androidguy
  • 3,005
  • 2
  • 27
  • 38
0
votes
1 answer

Easy way to animate views transition between activities

Is there a simple and generic way to animate views while transitioning between activities? Some function that only needs the source and target views without writing any code which is specific to each transition.
Sir Codesalot
  • 7,045
  • 2
  • 50
  • 56
0
votes
2 answers

Android - Animated ImageView with fading

I have created the following method to animate multiple images in a single ImageView. My problem is that the image transitions are abrupt, so what I would now like to do is make it so that the images fade from one to the next. So how could I achieve…
ban-geoengineering
  • 18,324
  • 27
  • 171
  • 253
0
votes
0 answers

How to perform Viewpager transition with Swipe Gestures

I got two activity which i intend to launch with swipe gestures. But the transition between activities were of a normal activity launch but i want something that would happen with viewpager, as you swipe horizontally.How do it do it? Here is my…
0
votes
0 answers

Android - apply transitions to dynamically created views

In my Android activity I have a TextView on the top which stays put throughout and below that a RelativeLayout which is the container to my dynamic views. In linear layout I add a LinearLayoutCompat object which has multiple TextViews. When any of…
iammrmehul
  • 730
  • 1
  • 14
  • 35
0
votes
1 answer

How to animate shared element in transition by moving the element in source activity to dest position?

I have a shared element in the transition from activity A to activity B. The shared element in A, however, uses a TransitionDrawable, and sometimes I want to fire the transition of the drawable, using startTransition, as part of the transition. (The…
androidguy
  • 3,005
  • 2
  • 27
  • 38
0
votes
0 answers

Xamarin Forms Navigation Transitions

I just re-used Rg.Plugins.Popup code for navigation transitions/animations between content pages to avoid default (buggy) navigation in android. It's working good but the thing is that I could not get the navigation bar working (actually it is…
0
votes
2 answers

Android activity transition from bottom to top and top to bottom black background issue

MainActivity with the navigation drawer, tabLayout and viewPager with three fragments. Click on the fragment button, needs to invoke another activity. It needs the transition from "bottom to top" and when it back to main activity, it needs "top to…
rodent_la
  • 1,195
  • 4
  • 18
  • 38
0
votes
1 answer

Prevent decorView background from blinking while in transition

I'm creating transitions for my activities. I already set to exclude Navigation and Status Bar from transition:
user2494863
  • 451
  • 7
  • 17
0
votes
2 answers

Apply OnClickListener() to new Buttons in end scene

My app starts with a single button. Pressing it causes this button to slide down and new buttons to slide in into the same activity. I want to set OnClickListeners to these new buttons so I can use them to launch new activities using intent. The…
0
votes
1 answer

Sliding down activity - Android Material Design App

I've been to make this effect in Android. I've achieved to make a Share Element Intent succesfully but don't have a clue on how to get back to the previous activity by sliding down the second one. The example of what I'd like to do is this:…
0
votes
0 answers

Android shared element transition produces image flicker with imageswitcher

Activity A has a small ImageSwitcher that shows a stream with images and information about the current image. When pressing the current image activity B opens with the image in fullscreen. You can continue to watch the image stream here. Pressing…
0
votes
1 answer

Android View resize and WindowManager: unwanted transition during child view placement

I'm having some problems in avoiding an unwanted transition during child view placement in a custom ViewGroup after parent view resizing. This problem seems to be only present when using the WindowManager instead of the call to setContentView().…
0
votes
0 answers

In Android Transitions how to stop background from showing briefly

I try to learn some Android Transitions but I cannot understand how to stop the background from showing in between the Scenes. This all happens in a Fragment and the parent Activity show between the Scenes. How can I fix this? @Override public…
Tord Larsen
  • 2,670
  • 8
  • 33
  • 76
0
votes
1 answer

Listen to an Animation/Transition between Activities

I have two activities in my app. The second activity should be launched with an animation from the bottom of the screen. I want to make it look like as if only the content of the page changes and the action bar remains on top of the screen. To…
Emanuel
  • 863
  • 9
  • 29