最近我的scrollview遇到了一些问题。在发生投掷后,触摸事件不会到达滚动视图内的元素。在发生抛弃之后,我首先需要再次点击视图,之后恢复正常行为。我已经尝试过很多类似的解决方法:
但这一切都很麻烦,这似乎是不受欢迎的行为,首先没有?
看起来像是滚动视图在发生onfling之后拦截所有内容,直到一个新的正常(没有抛弃)up&低调。
<android.support.v4.widget.NestedScrollView
android:id="@+id/fsv_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/marker"
android:padding="@dimen/spacing_small"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_jobs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
答案 0 :(得分:-1)
您有一个滚动视图(NestedScrollView
),其中包含另一个滚动视图(RecyclerView
)。
对我来说听起来很麻烦。
为什么需要这样的布局?