I'm following the Cheesesquare example project to understand the new design material library.
I'm wondering if there's a way to use a custom view (like Telegram) with ImageView, title and subtitle instead of the simple Title provided by CollapsingToolbarLayout widget.
Thanks.
I had the same problem and spend many hours trying to find a solution. My solution was to add the collapsing Views (ImageView and TextView) inside the
CollapsingToolbarLayout
and then handle the transition in code. This way it's more flexible and simpler than extending from CollapsingToolbarLayout.First you'll need to add your Views inside the
CollapsingToolbarLayout
with the parallax properties:Then set the scaling of the Views with the help of an
OnOffsetchangeListner
:Somehow the default
offsetChangedListener
didn't work properly for me (you probably still should try it with the default listener first), so I used theControllableAppBarLayout
from https://gist.github.com/blipinsk/3f8fb37209de6d3eea99 and added the following:The only problem is, that you would need to set
app:contentScrim="#00000000"
(transparent) for yourCollapsingToolbarLayout
, so your views are still visible when the toolbar is collapsed. If you really need the collapsing-background effect I'm sure you could "fake" this by setting the alpha of a background ImageView in theOffsetChangeListener
. ;)