Design lib - CoordinatorLayout/CollapsingToolbarLayout with GridView/listView

前端 未结 6 1229
别跟我提以往
别跟我提以往 2020-11-30 07:54

This might be silly question but I didn\'t understand Design lib well. I am following this reference to create below layout. The Blue area should work as parallax when I scr

6条回答
  •  广开言路
    2020-11-30 08:14

    A simple solution was added to the support lib:

    ViewCompat.setNestedScrollingEnabled(listView,true);
    

    I've tested it with Android Support v4 Library 23.1 and it works well.

提交回复
热议问题