Materail Design中通过CollapsingToolbarLayout+Toolbar实现的Collapse的效果简直酷炫,可以是颜色,也可以是图像。当是图像的时候,问题来,Toolbar的标题会在图像上面,看起来怪怪的;有的人会说了,那你不设置标题就是了,可是Collapse回归的时候没有标题,也是怪怪的。
解决方案:Toolbar可以当做ViewGroup来使用,也就是说如下的写法是可以的
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary">
<TextView
android:id="@+id/toolbarText"
android:layout_width="wrap_content"
android:layout_height="wrap_conte