CollapsingToolbarLayout with a customised behavior
问题 I am following this popular link for cordinator behaviour, following this post . I wanted a desired behavior that image should be floated to right side instead of left and for this, I modified AvatarImageBehavior.java -> maybeInitProperties() method -> as following : if (mFinalXPosition == 0) mFinalXPosition= getScreenWidth()-70; Now I wish the toolbar to be fixed at top, and only image to move and stick to it. As per my understanding, only Behavior file is responsible for this transition. I