Re: [android-developers] RelativeLayout as a child of CoordinatorLayout

2016-01-31 Thread Angel Todorov
Found the issue, app:layout_behavior="@string/appbar_scrolling_view_behavior" should be set on the SwipyRefreshLayout, not on the ListView. Thanks, Angel On Sun, Jan 31, 2016 at 1:14 PM, Angel Todorov wrote: > hey, > > Thanks for the feedback. I'm setting the

Re: [android-developers] RelativeLayout as a child of CoordinatorLayout

2016-01-31 Thread Angel Todorov
code, so that I don't have to use a RecyclerView or another view that supports nested scrolling - because the ListView on its own doesn't support nested scrolling, and coordinator layout's scrolling behavior expects a content view which supports nested scrolling: listview.s

[android-developers] RelativeLayout as a child of CoordinatorLayout

2016-01-29 Thread Angel Todorov
I would like to use a CoordinatorLayout so that my toolbar can hide automatically when my content view (which supports nested scrolling) is scrolled. The problem is that the coordinator layout always expects an AppBarLayout as its first child, therefore i cannot put a relative layout in orde