android-transitions Questions

1

I want my item in ListView to expand into a Fragment / Activity showing the item details. Here's an example showing the animation - https://dl.dropboxusercontent.com/u/75404011/inbox-animation.mp4...
Coons asked 14/11, 2015 at 16:15

2

Solved

I want to add an enter transition to the next activity. So I did: getWindow().requestFeature(Window.FEATURE_ACTIVITY_TRANSITIONS); window.setEnterTransition(new Slide()); This doesn't seem to w...
Posthaste asked 3/6, 2016 at 7:3

4

Solved

Android transition is same for explode and slide.Actually I don't think its animating. Also duration is not 6 seconds. How can I fix it? Code taken from here. public class MainActivity extends A...

2

Solved

In view of normal Lollipop transition of Activity having shared elements, e.g. https://github.com/codepath/android_guides/wiki/Shared-Element-Activity-Transition, it is quite common one is transiti...

2

I have a TextView in my activity A. How can I make shared element transition of TextView from activity A and a title of CollapsingToolbarLayout.setTitle() from activity B? Is there way to obtain i...

2

Solved

I am trying to use explode exit transition on a grid view. However, the only thing that flies away radially is the floating button at the bottom of the screen. The GridView cells slide away as a si...
Devilment asked 1/4, 2016 at 18:50

2

I am trying to implement Activity Transitions but I am not able to see the effects. Here is the code for my first activity: @Override protected void onCreate(Bundle savedInstanceState) { super.o...
Transubstantiate asked 28/1, 2016 at 14:36

0

(See updates after code.) I have a screen with a rotated View that I want to transition, ideally using the built-in shared element transition feature of Android, to another screen. However, the an...

2

Solved

I'm trying to make a smoothly-updating display by calling TransitionManager.beginDelayedTransition(viewGroup, new AutoTransition()) before updating the display. But I found that sometimes I update ...
Jolly asked 28/12, 2015 at 17:57

3

While activities transit one to other, shared elements, which place over the screen in new activity, overlay navigation bar, as shown on picture Also you can see this bug in video view overlay na...
Clypeate asked 10/9, 2015 at 11:45

2

Solved

I need help about transition between activities: I have two activities A and B and both have a ViewPager with the same image list. Every page has an ImageView with the transitionName equals to ​...

1

Solved

I have an activity that hosts a fragment F1. Upon a button click, F1 is replaced by another fragment F2. When the back button is pressed, the app returns from F2 to F1 via an exit transition animat...

3

Solved

I have image which is symmetrical and I want to move it infinitly from right to left smoothly. I tried to use TranslateAnimation but first I have to properly set my image which is quite difficult m...
Botheration asked 15/10, 2015 at 13:29

1

In order to let shared element transition run smoothly, I need to postpone the heavy initialization at my destination activity. See code below: getWindow().setSharedElementEnterTransition(enterTra...

3

Solved

I have a button which on clicking opens another activity which comes up from below and covers half the screen. I searched about it but did not get any useful approach except the overridePendingTran...

2

Solved

I am using the new KitKat Transitions API on Android. I have created two Scene objects using two layouts. I animate from Scene 1 to Scene 2 inside a Fragment. I want to automatically move back to t...

4

Solved

What I want is that when the user clicks a list item in a ListView, it converts to a whole activity (as you can see in the following example), but I was not able to find a tutorial explaining this ...

1

I am trying to use the transitions which introduced in material design in pre - lollipop apps(Min API19). I was going through http://www.google.com/design/spec/animation/meaningful-transitions.html...
Gelsenkirchen asked 27/10, 2015 at 5:1

1

Solved

I´ve just realised that android has another method called onActivityReenter. What is this for? can it be used like onActivityResult? Documentation says that is used for transitions, but not 100% ...

3

Solved

I have an activity with a DrawerLayout but whenever it opens there is a delay like a split-second where the screen is white then my screen is drawn. This happens after the Transition finishes. So...
Chellean asked 9/9, 2015 at 6:50

1

I am animating a transition between activity X and activity Y. X contains a list with images, and when an image is clicked is expanded and "zoomed" in activity Y. So, this image is a share elemen...

1

Solved

Just as the title says... I'm using a transition between activities, and I'd like to have some kind of listener (or event) for both activities, for when the transition has finished and for just be...

0

Can anyone suggest me an example for the opening and closing transition that is used in Inbox by Gmail's Android App. I did manage to find this example. However, is there anything else available?...
Volturno asked 12/7, 2015 at 2:47

0

I have been trying to implement the new Lollipop activity and shared elements transitions during a few days following the steps from Alex Lockwood awesome blog posts. But now I'm facing a bit of a ...

1

You can download my entire project to try and debug. Here is a repo of my entire code: https://bitbucket.org/lexic92/studio48/ I have a "ghost fragment" appearing in the transition when I try to...

© 2022 - 2024 — McMap. All rights reserved.