我在我的应用中与Recyclerview一起实施CollapsingToolbarLayout时遇到了一些问题。所以我有所有设置和工作(相比几个不同的来源 - 包括CheeseSquare设置) - 但我有一些问题在布局底部附近的间距(第一张照片和第三张照片)我希望有人可能能够提供帮助。
图片在这里找到: http://imgur.com/a/w3lb8
似乎有一些人遇到了这个问题,他们的答案并没有解决我的问题 - 完全至少:
CoordinatorLayout leaves empty space at the bottom after scrolling
Whitespace below CoordinatorLayout in DrawerLayout
我尝试按照建议将android:layout_gravity="fill_vertical"
添加到NestedScrollView / Recyclerview,虽然这似乎(大部分)修复了它,但它现在隐藏了1& 1/3的最低视图(通过层次结构查看器查看视图 - 照片4)。我确定有一个解决方案,但我还没弄清楚。非常感谢任何帮助。
活动布局文件:
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="240dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
>
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:expandedTitleTextAppearance="@style/GasMonitorTheme.ActionBar.TitleTextAppearance"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/toolbar_imageview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
android:transitionName="car_image"
app:layout_collapseMode="parallax"
/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_actionbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:layout_gravity="fill_vertical"
android:id="@+id/fragment_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/default_side_padding"
android:clickable="true"
android:src="@drawable/ic_add"
android:tint="@color/white"
app:layout_anchor="@id/coordinator_layout"
app:layout_anchorGravity="bottom|right|end"
/>
</android.support.design.widget.CoordinatorLayout>
我已经完成并简化了我的活动,以匹配CheeseSquare应用程序(试图找到为什么只有我的这样做),除了我的适配器拉出List。我已经对此进行了测试,并在API 22和API上看到了同样的问题。 23。