https://kotlinlang.org logo
Join SlackCommunities
Powered by
# motionlayout
  • a

    Aslam Hossin

    11/22/2019, 2:05 PM
    set the channel description: Manage motion and widget animation with MotionLayout
  • r

    rodrigo

    12/19/2019, 11:27 AM
    Have you guys tried to work with nested motionlayout?
  • r

    rodrigo

    12/19/2019, 11:36 AM
    Just found out nested hierarchies are not supported 😞
  • f

    faisalahmed

    01/03/2020, 1:59 PM
    hey guys I am stuck with a problem in MotionLayout @nickbutcher @romainguy @cb calling
    setProgress
    on my container
    MotionLayout
    isnt doing anything if the layout is put inside a bottomsheet, whereas it works when used in any other layout. 😞 Help really appreciated.
  • f

    faisalahmed

    01/21/2020, 8:11 AM
    Has anyone experience a strange bug with motionlayout not working properly when screen off.
  • f

    faisalahmed

    01/21/2020, 9:46 AM
    guys??
  • h

    Hakob Vardanyan

    05/07/2020, 11:30 AM
    Hello folks. Hope you are doing well. I just wanna drop this here. Write your opinion in the thread )))) https://github.com/hakobvardanyan/onboarding-with-motion-layout
  • m

    myanmarking

    08/26/2020, 9:01 AM
    i found a corner case with MotionLayout + HeaderView + RecyclerView in which the recyclerView scroll expands the header but no MotionLayout.TransitionListener is called. Is there any active bug related to this?
  • m

    myanmarking

    08/26/2020, 9:01 AM
    I'm not sure i misconfigured the scene, or there is a bug
  • d

    dambakk

    08/31/2020, 12:10 PM
    I cant find any resources on MotionLayout Testing. Can anyone point me in the right direction?
  • m

    myanmarking

    10/02/2020, 3:09 PM
    god, i hate and love motionLayout
    😁 1
  • m

    myanmarking

    11/02/2020, 12:13 PM
    hello guys. Any1 having problems related to recyclerview offscreen and motionLayout
  • m

    myanmarking

    11/02/2020, 12:13 PM
    for some reason, the recyclerview in small devices start offscreen, and the constraints are wrong
  • m

    myanmarking

    11/02/2020, 12:13 PM
    any help ?
  • a

    Aslam Hossin

    02/14/2021, 4:17 AM

    https://www.youtube.com/watch?v=M1jE3W3_NTQ&list=PLWz5rJ2EKKc_PEOEHNBEyy6tPX1EgtUw2▾

  • d

    Dave Scheck

    08/22/2023, 3:02 PM
    Not sure if this is still an active channel and I know that this might get shut down as "not Kotlin", but hopefully someone either has a quick answer or knows where to point me to ask it. I have a view that has a collapsed and expanded states and the only thing that changes in the constraint sets is the layout width
    Copy code
    collapsed:
            android:layout_width="100dp"
    expanded:
            android:layout_width="200dp"
    I'm trying to keyframe the animation so that I get this view to max width at frame 25. I can't seem to find the attribute to put in my
    KeyFrameSet
    . My best guess was something like one of the following, but I'm not having luck
    Copy code
    <KeyPosition
        motion:framePosition="25"
        motion:motionTarget="@+id/container"
        motion:sizePercent="1"
    />
    
    <KeyPosition
        motion:framePosition="25"
        motion:motionTarget="@+id/container"
        motion:percentX="1"
    />