android-transitions Questions
3
My application displays a splash screen for 1 second before displaying the main activity. Both the splash screen and main activity share a common image that is required to animate from the center o...
Lona asked 27/4, 2017 at 20:12
0
Background
I've been trying to get parent-to-child navigational transition implemented (specifically for recyclerview items -> detail fragment). I'm currently using sharedElementTransitions with t...
Phosphoprotein asked 27/10, 2018 at 22:12
1
Solved
Background
I am trying to implement the "parent-to-child" navigational transition specifically when you click a Recyclerview entry and the details appear in a fullscreen fragment. Something like t...
Scales asked 26/10, 2018 at 21:53
1
While playing with MotionLayouts in a RecyclerView I noticed that the MotionLayouts would not animate the wrapping around their children if these happened to change in height.
A simple way to repr...
Schertz asked 22/8, 2018 at 18:8
5
Solved
I want to go from a list view to the detail view and therefore, I use following OnClickListener in my list:
@Override
public void onClick(View view)
{
Bet bet = (Bet)view.getTag();
FragmentManag...
Brooklime asked 15/6, 2015 at 14:40
1
I followed this documentation: https://developer.android.com/training/transitions/start-activity#java .
First, I will show you my implementation. You will find my question at the end of this post....
Disafforest asked 8/9, 2018 at 16:40
5
What I'm trying to do
I have a RecyclerView with many items that are basically some CardView.
Those cards have a supporting text in the middle of their bodies, which has the visibility set to GON...
Bister asked 1/3, 2018 at 17:1
1
Solved
I am using default shared element transitions between 2 RecyclerView items in 2 activities (MainActivity and DetailActivity). Animation from MainActivity to DetailActivity is working fine, but if u...
Esperanzaespial asked 13/8, 2018 at 21:32
0
Is it possible to pre-load certain Fragments with the Navigation Architecture Component from Android Jetpack in order to get smooth transitions?
Without pre-loading I'll never get smooth transitio...
Huffman asked 22/8, 2018 at 13:10
2
Solved
Started realization for open images with Shared Elements and animation by this guide.
https://android-developers.googleblog.com/2018/02/continuous-shared-element-transitions.html
But catched an e...
Mathis asked 24/3, 2018 at 5:54
2
I have a custom Transition used in shared elements between my two Activities.
My transition doesn't work because the TransitionValues parameters has the same View with same attributes in both meth...
Lesh asked 28/4, 2016 at 12:34
6
What I use:
activity_stay.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="@android:integ...
Dis asked 30/3, 2018 at 8:40
2
Solved
Intent intent = new Intent(LoginActivity.this, Profile.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
overridePendingTransition(...
Fiden asked 2/1, 2016 at 12:26
2
I want to replace a fragment with animation but it has to be dynamic every time, i.e. it will start from the point where I will click on the screen but fragmentTransaction.setCustomAnimations metho...
Ponzo asked 11/12, 2015 at 14:8
2
I have fragment from which I'm launching activity with shared element transition that has viewpager in it, the enter transition works fine but when i scroll in view pager and finish transition the ...
Puma asked 5/5, 2018 at 12:12
4
Solved
I'm trying to implement a shared elements transition when 2 ImageViews from one screen go to the next screen. one of the images has a scaleType of centerCrop on both screen. The problem I'm facing ...
Leak asked 22/6, 2016 at 7:59
1
Solved
I am implementing a gallery app, which has a Fragment that holds a RecyclerView with images, onClick of an image I go to ViewPager to cycle through images.
For now, I am trying to implement just th...
Malinda asked 12/4, 2018 at 21:53
6
Solved
When I call new activity by animation the background gets black.
How can I remove remove the black background?
For the animation I'm using:
getWindow().setBackgroundDrawableResource(R.drawable.main...
Diffractometer asked 24/6, 2011 at 13:18
0
I'm animating between scenes using the TransitionManager and constraint sets using the following code.
val transition = AutoTransition()
transition.addListener(object : Transition.TransitionListen...
Frontispiece asked 31/3, 2018 at 14:17
2
Solved
I have a use case where I mostly start an activity with a transition, but that's not the case when opening it from the navigation drawer.
To keep the transition smooth I have a Transition.Transiti...
Intelligencer asked 22/2, 2016 at 20:27
3
Here we go: two Activities with a shared element transition (Button). The second Activity has a TextInputLayout with a hint:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/andr...
Loosejointed asked 20/9, 2017 at 12:26
1
I'm working in a custom Transition to animate only the visible part of the Shared View in case it is partially visible.
In my case this happens because the Shared View is inside a ConstraitLayout,...
Quadrireme asked 4/2, 2018 at 16:51
1
I'm working in an app that is similar to Google Calendar...
There are events and when a user click one, the event grows and
transforms into the detail view.
The shared views (the events) are insi...
Devious asked 4/2, 2018 at 12:6
2
I am trying to learn simple TransitionManager work, but I'm stuck little bit...
My goal is make changing between two scenes by image clicking. But after first image click and first scene change, i...
Blate asked 16/10, 2015 at 7:53
1
Solved
I'm trying to setEnterTransition with explode.xml file.
i tried this
<?xml version="1.0" encoding="utf-8"?>
<transitionManager xmlns:android="http://schemas.android.com/apk/res/android"...
Pacorro asked 27/1, 2018 at 7:57
© 2022 - 2024 — McMap. All rights reserved.