我的结构如下所示:
<CoordinatorLayout>
<AppBarLayout>
<CollpasingToolbarLayout>
<ImageView />
<Toolbar />
</CollpasingToolbarLayout>
</AppBarLayout>
<NestedScrollView>
<LinearLayout>
<CardView>
<LinearLayout />
<CardView>
....
</LinearLayout>
</NestedScrollView>
<TextView />
</CoordinatorLayout>
我在 cardview 元素上有一个 onClick/onTouchListener。onTouch/onClick 事件有效。但是,如果我想在其中一个具有 onClickListener 的卡片元素上开始滚动,则滚动视图会被拦截,它根本不会滚动。
在一个非常相似但较旧的结构上它可以工作,但现在我尝试了一切,但我仍然无法弄清楚我错过了什么。
有人有想法吗?
非常感谢 干杯