我在活动页面中使用CoordinatorLayout
。其中,应用栏下方有ListView
。但是当我使用ListView
而不是NestedScrollView
时,它无效。如果我将ListView
放在NestedScrollView
内,ListView
不会扩展
答案 0 :(得分:63)
您可以在addtribute
:)中添加android:fillViewport="true"
android.support.v4.widget.NestedScrollView
时进行修复。这是我的代码。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true"
>
<ListView
android:id="@+id/list_myContent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
>
</ListView>
</android.support.v4.widget.NestedScrollView>
答案 1 :(得分:38)
在Lollipop之后你可以使用
setNestedScrollingEnabled(true);
ListView / GridView / ScrollableView上的。从文档
启用或禁用此视图的嵌套滚动
如果您需要向后兼容旧版操作系统,则必须使用RecyclerView
。您可以阅读更多here
编辑。
ViewCompat
具有静态方法setNestedScrollingEnabled(View, boolean)
。例如
ViewCompat.setNestedScrollingEnabled(listView, true)
感谢@Dogcat
指出
答案 2 :(得分:32)
要使CoordinatorLayout
正常工作,您需要滚动子项来实现NestedScrollingChild。这些类是NestedScrollView
和RecyclerView
。
简单地说 - 只需使用RecyclerView
来滚动内容,它就会正常运行:)
P.S。作为旁注,我没有看到为什么你再使用ListView
的原因。我知道这是一种习惯,而且设置起来比较容易(因为你已经多次完成),但是建议使用RecyclerView
。
答案 3 :(得分:11)
只需将android:fillViewport="true"
放入NestedScrollView
标记
答案 4 :(得分:5)
这对我有用。
在android:fillViewport="true"
NestedScrollView
将一个布局元素作为子项添加到NestedScrollView
。在我的情况下LinearLayout
然后
在android:nestedScrollingEnabled="true"
上设置ListView
让ListView
成为LinearLayout
很高兴
答案 5 :(得分:5)
你的listview会滚动。希望有所帮助。
integer
答案 6 :(得分:1)
以下代码对我有用:
ViewCompat.setNestedScrollingEnabled(listView, true);
您的ListView
应位于NestedScrollView
答案 7 :(得分:0)
您无法在nestedscrollview内滚动listview.Use Recyclerview with nestedscrollview
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent"
android:orientation="horizontal">
<de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/profile_image"
android:layout_width="76dp"
android:layout_height="76dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginLeft="24dp"
android:layout_marginStart="24dp"
android:src="@drawable/profile"
app:border_color="#FF000000" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@+id/profile_image"
android:gravity="center_vertical"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="IRFAN QURESHI"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="irfan123@gmail.com" />
</LinearLayout>
<ImageView
android:layout_marginLeft="50dp"
android:layout_gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_delete_black" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@color/colorPrimary"
android:gravity="center_horizontal"
android:padding="30dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="@drawable/login_email_bg_round_rect_shape"
android:gravity="center_horizontal"
android:padding="10dp"
android:text="POST A QUERY" />
</LinearLayout>
<!--<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>-->
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical" />
<RelativeLayout
android:background="@color/colorAccent"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:padding="8dp"
android:gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SIGN OUT" />
<ImageView
android:paddingTop="5dp"
android:layout_marginRight="40dp"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_delete_black" />
</RelativeLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.v4.widget.NestedScrollView>
答案 8 :(得分:0)
只需在NestedScrollView中添加android:nestedScrollingEnabled =“true”标记。
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:nestedScrollingEnabled="true">
<ListView
android:id="@+id/list_myContent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical">
</ListView>
答案 9 :(得分:0)
我发现Prokash Sarkar的这个解决方案非常适合扩展ListView的内容,以便它可以在NestedScrollView中正确滚动。
Can't scroll ListView in its parent NestedScrollView - Android
希望这有助于其他搜索NestedScrollView和ListView的人。
答案 10 :(得分:0)
如果可能,用RecyclerView
替换ListView,否则创建您的customListView并将onMeasure
中的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();
}
此ListView
将不再滚动,可以在NestedScrollView
内部使用。