CollapsingToolbarLayout中Toolbar不跟随ListView扩展

要想Toolbar跟随Listview的滑动扩展或者是收缩这中联动效果,需要在ListView中配置如下属性:
android:nestedScrollingEnabled=”true”

            <ListView
                android:id="@+id/station_show"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:nestedScrollingEnabled="true"
                android:scrollbars="none" />

GridView同理,不过这个属性sdk>21才会有效,产生效果

你可能感兴趣的:(andorid)