Fixed
Status Update
Comments
ar...@google.com <ar...@google.com>
is...@google.com <is...@google.com>
al...@google.com <al...@google.com> #2
We've marked the default animations (and the other resources Navigation exposes to apps) as public resources in alpha09 as part of https://android-review.git.corp.google.com/852689
Let us know if this doesn't fix your issue once you upgrade to alpha09.
Let us know if this doesn't fix your issue once you upgrade to alpha09.
al...@google.com <al...@google.com> #3
I am using Android Studio 3.6 (stable). My app/build.gradle.kts includes
implementation("androidx.navigation:navigation-fragment-ktx:2.2.1")
implementation("androidx.navigation:navigation-ui-ktx:2.2.1")
however, I am still seeing this issue.
implementation("androidx.navigation:navigation-fragment-ktx:2.2.1")
implementation("androidx.navigation:navigation-ui-ktx:2.2.1")
however, I am still seeing this issue.
am...@google.com <am...@google.com>
an...@google.com <an...@google.com> #4
Fixed and will be released in androidx.transition:transition:1.1.0-alpha1
Description
In support transitions we also have such bug.
Library com.android.support:transition:26.0.0-beta2
In some cases if you apply more than one animators that animate visibility changes it will show two instances of view.
Example project:
Screencast is attached.
Works fine with the code:
TransitionManager.beginDelayedTransition(container,
new TransitionSet()
.addTransition(new Fade())
.addTransition(new Slide(Gravity.RIGHT)));
icon.setVisibility(View.GONE);
But have two "instances" of animated view in that case:
TransitionManager.beginDelayedTransition(container,
new TransitionSet()
.addTransition(new Fade())
.addTransition(new Slide(Gravity.RIGHT)));
container.removeView(icon);
The reason of it that every Visibility transition add the "screenshot" of view to the overlay separately. I think first Visibility transition should add view to the overlay and the second Visibility transition should reuse the same view from overlay and apply animation to it.
I've already fixed the issue in my backport of transitions framework -