gpt4 book ai didi

java - NestedScrollView 不会滚动所有子项

转载 作者:行者123 更新时间:2023-12-02 02:08:28 26 4
gpt4 key购买 nike

我将 CollapsingToolbarLayout 与 NestedScrollView 结合使用,在 NestedScrollView 内我有一个项目列表,但在执行中我无法滚动所有项目。

在我的示例中,我没有看到最后一个 TextView 和一些包含内容。

这是我的activity_main.xml

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="256dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsingToolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="40dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
android:src="@drawable/space"
app:layout_collapseMode="pin"/>

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:elevation="7dp"/>

</android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:src="@drawable/ic_search"
app:layout_anchor="@id/appbar"
app:layout_anchorGravity="bottom|right"/>

<!-- Your Scrollable View : Can be Nested Scroll View or Recycler View-->
<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="10dp">

<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<include layout="@layout/item_nested_scrollview"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="LastOne"/>

</LinearLayout>

</android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

这是我的项目 list 。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:elevation="5dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Smartherd"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
android:textStyle="bold"/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="@string/description"
android:textColor="@android:color/black"
android:textSize="15sp"/>

</LinearLayout>

</android.support.v7.widget.CardView>

这张照片在顶部 enter image description here而这个,当我向下滚动时,你可以看到它没有显示 TextView ,即使卡片 View 没有完全显示。 enter image description here

最佳答案

我找到了答案,我添加了

android:paddingBottom="?attr/actionBarSize" 

对于 NestedScrollingView 内的布局

关于java - NestedScrollView 不会滚动所有子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50400441/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com