现在我正在使用一个简单的RecyclerView,它应该在TextView下显示。但是,当我使用更多项目填充RecyclerView时,它会被切断并且不会向下滚动。我在RecyclerViews中记得的是,在滚动时,我所做的每一项实现基本上都是开箱即用的。
<?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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="david.projectclouds.MainActivity"
tools:showIn="@layout/app_bar_main">
<TextView
android:id="@+id/Date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/_20sdp"
android:paddingLeft="@dimen/_20sdp"
android:paddingTop="@dimen/_20sdp"
android:textAllCaps="true"
android:textColorLink="@color/colorAccent"
android:textSize="30sp"
android:typeface="sans"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/Date"
android:scrollbars="vertical"
/>
</android.support.constraint.ConstraintLayout>
这是我目前的主要活动XML。告诉我是否需要添加更多代码。
答案 0 :(得分:2)
尝试使用约束
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/Date"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp" />