在NestedScrollView中使用ListView不能正常工作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在NestedScrollView中使用ListView不能正常工作相关的知识,希望对你有一定的参考价值。
在android中,图像视图应在启动滚动之前消失,但反向运行。如果我在Imageview消失之前向上和向下滚动,当我在屏幕上按住手指时,滚动视图开始向下滚动,然后Imageview开始关闭。这是我的代码。
<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedScroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/user_menu_bg"
android:orientation="vertical">
<ListView
android:id="@+id/menu_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@drawable/menu_list_divider"
android:listSelector="@android:color/transparent"
android:nestedScrollingEnabled="true" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
答案
最好使用NonScrollableListView
而不是listview。或者使用RecyclerView
。
尝试
public class NonScrollListView extends ListView {
public NonScrollListView(Context context) {
super(context);
}
public NonScrollListView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public NonScrollListView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
ViewGroup.LayoutParams params = getLayoutParams();
params.height = getMeasuredHeight();
}
}
以上是关于在NestedScrollView中使用ListView不能正常工作的主要内容,如果未能解决你的问题,请参考以下文章
在 CoordinatorLayout Android 中的 ViewPager 片段中使用 NestedScrollView 突然滚动
如何在android中使用SwipeRefreshLayout和imageView进入NestedScrollView
在NestedScrollView中使用ListView不能正常工作