在ContraintLayout内的ViewPager中使用RecyclerView

时间:2017-11-22 10:22:04

标签: android android-recyclerview android-viewpager android-constraintlayout

我正在使用ConstraintLayout作为我的观点。在其中我放置了ViewPager,其中一个适配器包含的视图是RecyclerView

当我尝试放置图片时,我不能再滚动高度了。该高度看起来与我在顶部使用的空间相同(Toolbar + TabLayout)。

使用RelativeLayout代替ConstraintLayout时,

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:id="@+id/homeToolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/toolbarColor">

        <android.support.v7.widget.AppCompatImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="8dp"
            android:padding="7dp"
            android:src="@drawable/ic_menu"
            tools:ignore="RtlHardcoded" />

        <android.support.v7.widget.AppCompatImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:gravity="center"
            android:orientation="horizontal"
            tools:ignore="RtlHardcoded">

            <android.support.v7.widget.AppCompatImageView
                style="@style/RippleEffect"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="5dp"
                android:padding="7dp" />

            <android.support.v7.widget.AppCompatImageView
                style="@style/RippleEffect"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="5dp"
                android:padding="7dp"
                android:src="@drawable/ic_search" />
        </LinearLayout>
    </RelativeLayout>

    <android.support.design.widget.TabLayout
        android:id="@+id/homeTabLayout"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@color/toolbarColor"
        app:layout_constraintTop_toBottomOf="@+id/homeToolbar"
        app:tabMode="scrollable" />

    <android.support.v4.view.ViewPager
        android:id="@+id/homeViewPager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@+id/homeTabLayout"

        />
</android.support.constraint.ConstraintLayout>

这就是我所看到的(见最后的Darth Vader)

enter image description here

1 个答案:

答案 0 :(得分:4)

添加

解决

app:layout_constraintBottom_toBottomOf="parent"

到ViewPager