My structure looks like this:
<CoordinatorLayout>
<AppBarLayout>
<CollpasingToolbarLayout>
<ImageView />
<Toolbar />
</CollpasingToolbarLayout>
</AppBarLayout>
<NestedScrollView>
<LinearLayout>
<CardView>
<LinearLayout />
<CardView>
....
</LinearLayout>
</NestedScrollView>
<TextView />
</CoordinatorLayout>
I've got a onClick/onTouchListener on the cardview elements. The onTouch/onClick events work. But the scrollview gets intercepted if I want to start the scroll on one of the card elements that has a onClickListener on it it just doesn't scroll at all.
On a very similar but older structure it worked, but now I tried everything but I still can't figure out what I'm missing.
Does anybody have an idea ?
Thanks a lot Cheers