After Android Support Design Library was released, I wanted to implement an effect like a page of Twitter Profile, in which Toolbar
's title
and subtitle
could be changed as screen scrolled vertically. So I tried to use CoordinatorLayout
, AppBarLayout
, CollapsingToolbarLayout
and Toolbar
from Android Support Design Library to achieve this effect. Everything worked as expected except that Toolbar
's content couldn't be showed or changed as I wanted. I should have been wanting to display collapseIcon
, navigationIcon
, title
, subtitle
of Toolbar
, but they didn't show up even though I had set them in the layout and programmatically. Just as the blog said,
Note that in those cases, you should call setTitle() on the CollapsingToolbarLayout, rather than on the Toolbar itself.
If you have checked the doc, you would find out CollapsingToolbarLayout
only focus on settings of title
, but can do nothing about collapseIcon
, navigationIcon
and subtitle
.
So could someone tell me how to achieve this effect by Toolbar
and CollapsingToolbarLayout
? If they couldn't be able, then what other things could be? Anybody has any ideas about this?
Any tips will be appreciated. Thanks in advance.